I'm trying to set up some nested routes to add a common layout. Check the code out:
  <Router>
    <Route component={Layout}>
      <div>
        <Route path='/abc' component={ABC} />
        <Route path='/xyz' component={XYZ} />
      </div>
    </Route>
  </Router>
While this works perfectly fine, I still get the warning:
Warning: You should not use <Route component> and <Route children> in the same route; will be ignored
 
     
     
     
     
     
     
    