├── auth-js ├── jsconfig.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── components │ ├── Form.jsx │ ├── Login.jsx │ └── SignUp.jsx │ ├── firebase.js │ ├── hooks │ └── use-auth.js │ ├── index.css │ ├── index.js │ ├── pages │ ├── HomePage.jsx │ ├── LoginPage.jsx │ └── RegisterPage.jsx │ └── store │ ├── index.js │ └── slices │ └── userSlice.js └── auth-ts ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── components │ ├── Form.tsx │ ├── Login.tsx │ └── SignUp.tsx ├── firebase.ts ├── hooks │ ├── redux-hooks.ts │ └── use-auth.ts ├── index.css ├── index.tsx ├── pages │ ├── HomePage.tsx │ ├── LoginPage.tsx │ └── RegisterPage.tsx ├── react-app-env.d.ts └── store │ ├── index.ts │ └── slices │ └── userSlice.ts └── tsconfig.json /auth-js/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/jsconfig.json -------------------------------------------------------------------------------- /auth-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/package.json -------------------------------------------------------------------------------- /auth-js/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/public/favicon.ico -------------------------------------------------------------------------------- /auth-js/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/public/index.html -------------------------------------------------------------------------------- /auth-js/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/public/logo192.png -------------------------------------------------------------------------------- /auth-js/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/public/logo512.png -------------------------------------------------------------------------------- /auth-js/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/public/manifest.json -------------------------------------------------------------------------------- /auth-js/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/public/robots.txt -------------------------------------------------------------------------------- /auth-js/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/App.js -------------------------------------------------------------------------------- /auth-js/src/components/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/components/Form.jsx -------------------------------------------------------------------------------- /auth-js/src/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/components/Login.jsx -------------------------------------------------------------------------------- /auth-js/src/components/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/components/SignUp.jsx -------------------------------------------------------------------------------- /auth-js/src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/firebase.js -------------------------------------------------------------------------------- /auth-js/src/hooks/use-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/hooks/use-auth.js -------------------------------------------------------------------------------- /auth-js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/index.css -------------------------------------------------------------------------------- /auth-js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/index.js -------------------------------------------------------------------------------- /auth-js/src/pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/pages/HomePage.jsx -------------------------------------------------------------------------------- /auth-js/src/pages/LoginPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/pages/LoginPage.jsx -------------------------------------------------------------------------------- /auth-js/src/pages/RegisterPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/pages/RegisterPage.jsx -------------------------------------------------------------------------------- /auth-js/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/store/index.js -------------------------------------------------------------------------------- /auth-js/src/store/slices/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-js/src/store/slices/userSlice.js -------------------------------------------------------------------------------- /auth-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/package.json -------------------------------------------------------------------------------- /auth-ts/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/public/favicon.ico -------------------------------------------------------------------------------- /auth-ts/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/public/index.html -------------------------------------------------------------------------------- /auth-ts/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/public/logo192.png -------------------------------------------------------------------------------- /auth-ts/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/public/logo512.png -------------------------------------------------------------------------------- /auth-ts/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/public/manifest.json -------------------------------------------------------------------------------- /auth-ts/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/public/robots.txt -------------------------------------------------------------------------------- /auth-ts/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/App.tsx -------------------------------------------------------------------------------- /auth-ts/src/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/components/Form.tsx -------------------------------------------------------------------------------- /auth-ts/src/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/components/Login.tsx -------------------------------------------------------------------------------- /auth-ts/src/components/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/components/SignUp.tsx -------------------------------------------------------------------------------- /auth-ts/src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/firebase.ts -------------------------------------------------------------------------------- /auth-ts/src/hooks/redux-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/hooks/redux-hooks.ts -------------------------------------------------------------------------------- /auth-ts/src/hooks/use-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/hooks/use-auth.ts -------------------------------------------------------------------------------- /auth-ts/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/index.css -------------------------------------------------------------------------------- /auth-ts/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/index.tsx -------------------------------------------------------------------------------- /auth-ts/src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /auth-ts/src/pages/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/pages/LoginPage.tsx -------------------------------------------------------------------------------- /auth-ts/src/pages/RegisterPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/pages/RegisterPage.tsx -------------------------------------------------------------------------------- /auth-ts/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /auth-ts/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/store/index.ts -------------------------------------------------------------------------------- /auth-ts/src/store/slices/userSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/src/store/slices/userSlice.ts -------------------------------------------------------------------------------- /auth-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michey85/auth-react-youtube/HEAD/auth-ts/tsconfig.json --------------------------------------------------------------------------------