react-router-modal
react-router-modal copied to clipboard
How to use with react-router-config?
How do I specify the modal router in this type of structure?
const routes = [
{
component: Root,
routes: [
{
path: "/",
exact: true,
component: Home
},
{
path: "/child/:id",
component: Child,
routes: [
{
path: "/child/:id/grand-child",
component: GrandChild
}
]
}
]
}
];