├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── components │ ├── Account.jsx │ ├── ProtectedRoute.js │ ├── Signin.jsx │ └── Signup.jsx ├── context │ └── AuthContext.js ├── firebase.js ├── index.css └── index.js ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/components/Account.jsx -------------------------------------------------------------------------------- /src/components/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/components/ProtectedRoute.js -------------------------------------------------------------------------------- /src/components/Signin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/components/Signin.jsx -------------------------------------------------------------------------------- /src/components/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/components/Signup.jsx -------------------------------------------------------------------------------- /src/context/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/context/AuthContext.js -------------------------------------------------------------------------------- /src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/firebase.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/src/index.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/firebase-auth-context/HEAD/yarn.lock --------------------------------------------------------------------------------