├── .firebaserc ├── .gitignore ├── README.md ├── firebase.json ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── .gitignore ├── App.js ├── CustomLoginPage.js ├── comments.js ├── index.js ├── posts.js └── registerServiceWorker.js /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | FIREBASE_CONFIG.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/CustomLoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/src/CustomLoginPage.js -------------------------------------------------------------------------------- /src/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/src/comments.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/src/posts.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase-demo/HEAD/src/registerServiceWorker.js --------------------------------------------------------------------------------