├── .env.sample ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── actions ├── index.js └── user.js ├── components ├── Footer │ └── index.js ├── Header │ └── index.js ├── Home │ └── index.js ├── Landing │ └── index.js ├── NotFound │ └── index.js ├── SignIn │ └── index.js ├── SignOut │ └── index.js └── SignUp │ └── index.js ├── constants ├── actionTypes.js └── routes.js ├── containers ├── App │ ├── index.js │ └── index.test.js ├── HomeContainer │ └── index.js ├── SignInContainer │ └── index.js ├── SignOutContainer │ └── index.js └── SignUpContainer │ └── index.js ├── index.css ├── index.js ├── reducers ├── index.js └── user.js ├── routes ├── PrivateRoute.js ├── PublicRoute.js └── index.js ├── services └── firebase │ ├── config.js │ ├── context.js │ ├── firebase.js │ └── index.js ├── setupTests.js └── store └── index.js /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- 1 | export * from './user'; 2 | -------------------------------------------------------------------------------- /src/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/actions/user.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/Home/index.js -------------------------------------------------------------------------------- /src/components/Landing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/Landing/index.js -------------------------------------------------------------------------------- /src/components/NotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/NotFound/index.js -------------------------------------------------------------------------------- /src/components/SignIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/SignIn/index.js -------------------------------------------------------------------------------- /src/components/SignOut/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/SignOut/index.js -------------------------------------------------------------------------------- /src/components/SignUp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/components/SignUp/index.js -------------------------------------------------------------------------------- /src/constants/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/constants/actionTypes.js -------------------------------------------------------------------------------- /src/constants/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/constants/routes.js -------------------------------------------------------------------------------- /src/containers/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/containers/App/index.js -------------------------------------------------------------------------------- /src/containers/App/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/containers/App/index.test.js -------------------------------------------------------------------------------- /src/containers/HomeContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/containers/HomeContainer/index.js -------------------------------------------------------------------------------- /src/containers/SignInContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/containers/SignInContainer/index.js -------------------------------------------------------------------------------- /src/containers/SignOutContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/containers/SignOutContainer/index.js -------------------------------------------------------------------------------- /src/containers/SignUpContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/containers/SignUpContainer/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/reducers/user.js -------------------------------------------------------------------------------- /src/routes/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/routes/PrivateRoute.js -------------------------------------------------------------------------------- /src/routes/PublicRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/routes/PublicRoute.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/services/firebase/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/services/firebase/config.js -------------------------------------------------------------------------------- /src/services/firebase/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/services/firebase/context.js -------------------------------------------------------------------------------- /src/services/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/services/firebase/firebase.js -------------------------------------------------------------------------------- /src/services/firebase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/services/firebase/index.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafdarJamal/react-redux-firebase-auth/HEAD/src/store/index.js --------------------------------------------------------------------------------