├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components └── shared │ ├── AuthContext.js │ ├── Layout.js │ ├── ProtectedRoute.js │ └── jwtInterceptor.js ├── index.css ├── index.js ├── logo.svg ├── pages ├── FavouriteMovie.js ├── Home.js └── Login.js ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/shared/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/components/shared/AuthContext.js -------------------------------------------------------------------------------- /src/components/shared/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/components/shared/Layout.js -------------------------------------------------------------------------------- /src/components/shared/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/components/shared/ProtectedRoute.js -------------------------------------------------------------------------------- /src/components/shared/jwtInterceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/components/shared/jwtInterceptor.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/FavouriteMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/pages/FavouriteMovie.js -------------------------------------------------------------------------------- /src/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/pages/Home.js -------------------------------------------------------------------------------- /src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/pages/Login.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveen512/ReactJS-v18-JWT-Authentication/HEAD/src/setupTests.js --------------------------------------------------------------------------------