1
0
mirror of https://github.com/mizanxali/uno-online synced 2025-12-06 02:03:28 +00:00
Files
uno-online/src/components/Homepage.js
2021-02-17 07:04:27 +05:30

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