()
| 6 | import { BrowserRouter as Router, Route } from "react-router-dom"; |
| 7 | |
| 8 | const App = () => { |
| 9 | return ( |
| 10 | <Router> |
| 11 | <Route path="/" exact component={Join} /> |
| 12 | <Route path="/chat" component={Chat} /> |
| 13 | </Router> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected