mirror of
https://github.com/mizanxali/uno-online
synced 2025-12-06 02:03:28 +00:00
14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
import React from 'react'
|
|
import { Link } from 'react-router-dom'
|
|
|
|
const Homepage = () => {
|
|
return (
|
|
<div className='Homepage'>
|
|
<h1>UNO</h1>
|
|
<Link to='/play'><button>START GAME</button></Link>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Homepage
|