├── .gitignore ├── LICENSE ├── README.md ├── config.json └── src ├── components └── app.js ├── css └── app.css ├── index.js ├── reducers ├── exampleReducer.js └── index.js └── urls.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Alohomora 2 | 3 | > Omniport app frontend 4 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/config.json -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/src/css/app.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/exampleReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/src/reducers/exampleReducer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-alohomora/HEAD/src/urls.js --------------------------------------------------------------------------------