davidmfoley / react-router-modal

Simple modals for react-router 4
MIT License
153 stars 20 forks source link

How to use with react-router-config? #35

Open denny64 opened 5 years ago

denny64 commented 5 years ago

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