Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | import { Routes, Route } from "react-router-dom"; import withApiFunctions from "@/HOC/withApiFunctions"; import { PrivateRoutes } from "./privateRoute"; import { Home, Login, MovieDetails, UpcomingMovies, SearchResults, FullCastCrew, Profile, Reviews, } from "@/pages"; const HomeWithApi = withApiFunctions(Home); const UpcomingMoviesWithApi = withApiFunctions(UpcomingMovies); const SearchResultsWithApi = withApiFunctions(SearchResults); const MovieDetailsWithApi = withApiFunctions(MovieDetails); const LoginWithApi = withApiFunctions(Login); const ProfileWithApi = withApiFunctions(Profile); const AppRoutes = () => { return ( <Routes> <Route path="/" element={<HomeWithApi />} /> <Route path="/upcoming" element={<UpcomingMoviesWithApi />} /> <Route path="/search-results" element={<SearchResultsWithApi />} /> <Route path="/movie/:movieId" element={<MovieDetailsWithApi />} /> <Route path="/movie/:movieId/cast" element={<FullCastCrew />} /> <Route path="/movie/:movieId/reviews" element={<Reviews />} /> <Route path="/login" element={<LoginWithApi />} /> <Route element={<PrivateRoutes />}> <Route path="/profile" element={<ProfileWithApi />} /> </Route> </Routes> ); }; export default AppRoutes; |