react-router-modal icon indicating copy to clipboard operation
react-router-modal copied to clipboard

How to use with react-router-config?

Open denny64 opened this issue 6 years ago • 0 comments

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
          }
        ]
      }
    ]
  }
];

denny64 avatar Dec 02 '18 02:12 denny64