├── .gitignore ├── LICENSE ├── README.md ├── database.rules.json ├── firebase.config.js ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── actions └── auth.js ├── components ├── App.js ├── Home.js ├── auth │ ├── Login.js │ ├── Logout.js │ └── Register.js └── secure │ ├── Dashboard.js │ └── Profile.js ├── index.js ├── reducers ├── auth.js └── index.js └── utils └── secure.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/README.md -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/database.rules.json -------------------------------------------------------------------------------- /firebase.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/firebase.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/public/index.html -------------------------------------------------------------------------------- /src/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/actions/auth.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/components/auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/components/auth/Login.js -------------------------------------------------------------------------------- /src/components/auth/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/components/auth/Logout.js -------------------------------------------------------------------------------- /src/components/auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/components/auth/Register.js -------------------------------------------------------------------------------- /src/components/secure/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/components/secure/Dashboard.js -------------------------------------------------------------------------------- /src/components/secure/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/components/secure/Profile.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/reducers/auth.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/utils/secure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cretezy/react-redux-router-firebase/HEAD/src/utils/secure.js --------------------------------------------------------------------------------