├── .firebase └── hosting.YnVpbGQ.cache ├── .firebaserc ├── .gitignore ├── README.md ├── firebase.json ├── functions ├── .gitignore ├── index.js ├── package-lock.json └── package.json ├── package.json ├── public ├── favicon.ico ├── img │ └── mario-bg.png ├── index.html └── manifest.json └── src ├── App.js ├── components ├── auth │ ├── SignIn.jsx │ └── SignUp.jsx ├── dashboard │ ├── Dashboard.jsx │ └── Notifications.jsx ├── layout │ ├── Navbar.jsx │ ├── SignedInLinks.jsx │ └── SignedOutLinks.jsx └── projects │ ├── CreateProject.jsx │ ├── ProjectDetails.jsx │ ├── ProjectList.jsx │ └── ProjectSummary.jsx ├── config └── fbConfig.js ├── index.css ├── index.js ├── serviceWorker.js └── store ├── actions ├── authActions.js └── projectActions.js └── reducers ├── authReducer.js ├── projectReducer.js └── rootReducer.js /.firebase/hosting.YnVpbGQ.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/.firebase/hosting.YnVpbGQ.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/functions/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/mario-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/public/img/mario-bg.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/auth/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/auth/SignIn.jsx -------------------------------------------------------------------------------- /src/components/auth/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/auth/SignUp.jsx -------------------------------------------------------------------------------- /src/components/dashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/dashboard/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/dashboard/Notifications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/dashboard/Notifications.jsx -------------------------------------------------------------------------------- /src/components/layout/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/layout/Navbar.jsx -------------------------------------------------------------------------------- /src/components/layout/SignedInLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/layout/SignedInLinks.jsx -------------------------------------------------------------------------------- /src/components/layout/SignedOutLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/layout/SignedOutLinks.jsx -------------------------------------------------------------------------------- /src/components/projects/CreateProject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/projects/CreateProject.jsx -------------------------------------------------------------------------------- /src/components/projects/ProjectDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/projects/ProjectDetails.jsx -------------------------------------------------------------------------------- /src/components/projects/ProjectList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/projects/ProjectList.jsx -------------------------------------------------------------------------------- /src/components/projects/ProjectSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/components/projects/ProjectSummary.jsx -------------------------------------------------------------------------------- /src/config/fbConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/config/fbConfig.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/store/actions/authActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/store/actions/authActions.js -------------------------------------------------------------------------------- /src/store/actions/projectActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/store/actions/projectActions.js -------------------------------------------------------------------------------- /src/store/reducers/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/store/reducers/authReducer.js -------------------------------------------------------------------------------- /src/store/reducers/projectReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/store/reducers/projectReducer.js -------------------------------------------------------------------------------- /src/store/reducers/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sv1nnet/mario-plan-migrated-on-redux601-and-firebase300-alpha/HEAD/src/store/reducers/rootReducer.js --------------------------------------------------------------------------------