()
| 30 | |
| 31 | class App extends Component { |
| 32 | render() { |
| 33 | return ( |
| 34 | <Router history={history}> |
| 35 | <div> |
| 36 | <Link to="/basic/modal" className="btn btn-primary">Modal</Link> |
| 37 | <Route path="/basic/modal" component={ReactRouterModal} /> |
| 38 | </div> |
| 39 | </Router> |
| 40 | ); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | export default { |
nothing calls this directly
no outgoing calls
no test coverage detected