mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-02 02:30:29 +00:00
14 lines
198 B
TypeScript
14 lines
198 B
TypeScript
import { Route, Switch } from 'react-router';
|
|
|
|
const App = () => {
|
|
return (
|
|
<Switch>
|
|
<Route path='/' exact>
|
|
<div></div>
|
|
</Route>
|
|
</Switch>
|
|
);
|
|
};
|
|
|
|
export default App;
|