UNPKG

react-auto-import2

Version:

Import all your routes, components, layouts, contexts, styles and images fully automatically

19 lines (16 loc) 318 B
import { Routes, Route, Navigate } from 'react-router-dom' const routes = [ <Route key="*" path="*" element={ <Navigate to="/" /> } /> ]; routes.push( <Route key={ '/' } path={ '/' } element={ <a>Page /</a> } /> ) export default ( <Routes> { routes } </Routes> )