0
2
JRJose Romero
reactroutercomponentβ’β’β’
React TypeScript RecipesThe above code creates a class that is a router. Inside the class, we have a single route, which is the path "/". This route has a route component that is a <App/> element. The index route is also created, and this route has a <Navigate to="home" /> component.
Library: react
Shortcut: react.router.create
import React from 'react';
import { Routes, Route, Navigate } from 'react-router-dom';
import App from 'pages/App';
const Router = () => {
return (
<Routes>
<Route path="/" element={<App />}>
<Route index element={<Navigate to="home" />} />
</Route>
</Routes>
);
};
export default Router;