mirror of
https://github.com/mizanxali/uno-online
synced 2024-11-05 18:55:25 +00:00
16 lines
341 B
JavaScript
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
|