1
0
mirror of https://github.com/mizanxali/uno-online synced 2024-11-05 18:55:25 +00:00
uno-online/client/src/App.js
2021-02-22 05:02:50 +05:30

16 lines
341 B
JavaScript

import './App.css'
import { Route } from 'react-router-dom'
import Homepage from './components/Homepage'
import Game from './components/Game'
const App = () => {
return (
<div className="App">
<Route path='/' exact component={Homepage} />
<Route path='/play' exact component={Game} />
</div>
)
}
export default App