├── .DS_Store ├── .babelrc ├── .gitignore ├── README.md ├── dist └── .DS_Store ├── index.html ├── package.json ├── src ├── actions │ └── index.js ├── components │ ├── .DS_Store │ └── app.js ├── containers │ ├── Interface.js │ └── ReactMap.js ├── data │ └── buildingData.js ├── index.js ├── init_state.js ├── reducers │ ├── index.js │ ├── reduce_userInt.js │ └── reducer_stylesheet.js └── utilities │ ├── diff.js │ └── popup.js └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/README.md -------------------------------------------------------------------------------- /dist/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/dist/.DS_Store -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/components/.DS_Store -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/containers/Interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/containers/Interface.js -------------------------------------------------------------------------------- /src/containers/ReactMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/containers/ReactMap.js -------------------------------------------------------------------------------- /src/data/buildingData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/data/buildingData.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/index.js -------------------------------------------------------------------------------- /src/init_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/init_state.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/reduce_userInt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/reducers/reduce_userInt.js -------------------------------------------------------------------------------- /src/reducers/reducer_stylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/reducers/reducer_stylesheet.js -------------------------------------------------------------------------------- /src/utilities/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/utilities/diff.js -------------------------------------------------------------------------------- /src/utilities/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/src/utilities/popup.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McCulloughRT/BuildingsReact/HEAD/webpack.config.js --------------------------------------------------------------------------------