├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── main.yml │ └── size.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── example ├── .env ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.tsx │ ├── UserForm.tsx │ ├── firebaseConfig.ts │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── rollup.config.js ├── src ├── getErrorMessageForProvider.ts ├── index.tsx ├── setupTests.ts └── test.tsx ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/.github/workflows/size.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/README.md -------------------------------------------------------------------------------- /example/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/.prettierrc -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/README.md -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/public/logo192.png -------------------------------------------------------------------------------- /example/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/public/logo512.png -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/public/robots.txt -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/UserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/src/UserForm.tsx -------------------------------------------------------------------------------- /example/src/firebaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/src/firebaseConfig.ts -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/src/reportWebVitals.ts -------------------------------------------------------------------------------- /example/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/src/setupTests.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/getErrorMessageForProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/src/getErrorMessageForProvider.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/src/test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armand1m/react-with-firebase-auth/HEAD/yarn.lock --------------------------------------------------------------------------------