1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-21 02:31:24 +01:00
smov/src/App.tsx

18 lines
485 B
TypeScript
Raw Normal View History

2022-02-07 23:22:35 +01:00
import { Route, Switch } from 'react-router-dom';
2022-02-06 20:56:48 +01:00
import './index.css';
2022-02-07 23:22:35 +01:00
import { MovieView } from './views/MovieView';
import { SearchView } from './views/SearchView';
import { SeriesView } from './views/SeriesView';
2022-02-06 20:56:48 +01:00
function App() {
return (
2022-02-07 23:22:35 +01:00
<Switch>
<Route exact path="/" component={SearchView} />
<Route exact path="/media/movie" component={MovieView} />
<Route exact path="/media/series" component={SeriesView} />
</Switch>
2022-02-06 20:56:48 +01:00
);
}
export default App;