({ children, location })
| 8 | } |
| 9 | |
| 10 | const App = ({ children, location }) => ( |
| 11 | <div> |
| 12 | <Navbar location={location} /> |
| 13 | |
| 14 | <div className="container"> |
| 15 | {/* 相当于 Vue Demo 中的根 router-view */} |
| 16 | { children } |
| 17 | </div> |
| 18 | |
| 19 | { DevTools && <DevTools /> } |
| 20 | </div> |
| 21 | ) |
| 22 | |
| 23 | export default App |
nothing calls this directly
no outgoing calls
no test coverage detected