Как сделать чтобы роуты создавались из массива?
export const routes = [
{path: '/about', component: About},
{path: '/posts', component: Posts},
{path: '/posts/:id', component: PostsIdPage},
]
const AppRouter = () => {
return (
<Routes>
{routes.map(route =>
<Route
component={route.component}
path={route.path}
/>
)}
</Routes>
)
}
Источник: Stack Overflow на русском