INNER CODE UNIT · JavaScript
App
AdityaKumawat97/MERN-BUS-APP · frontend/src/App.js:12
function App() {
return (
<div className="App">
<Router>
<Switch>
<Route path="/" exact render={props => <Homepage {...props} />} />
<Route path="/login" render={props => <LogOrsign {...props} />} />
<Route path="/register" render={props => <Signup {...props} />} />
<Route path="/routes" exact render={props => <RouteSelection {...props} />} />
<Route path="/profile" exact render={props => <Profile {...props} />} />
<Route path="/getTicket" exact render={props => <TicketPage {...props} />} />
</Switch>
</Router>
</div>
);
}