skip to Main Content

Reactjs – Enable Routing in React static web app after deployment

I have a static web app (React/Typescript) with the following routes/pages: index.ts ReactDOM.render( <ThemeProvider> <React.StrictMode> <Provider store={store}> <BrowserRouter> <Routes> <Route path="" element={<App />}> <Route path="/" element={<JobsPage />} /> <Route path="/JobDetails" element={<JobDetails />} /> <Route path="/OwnerPage" element={<OwnerPage />} /> <Route path="/AdminConfig"…

VIEW QUESTION
Back To Top
Search