1
0
mirror of https://github.com/mizanxali/uno-online synced 2024-09-28 17:11:00 +00:00
uno-online/client/src/components/Homepage.js

14 lines
277 B
JavaScript
Raw Normal View History

2021-02-11 20:01:04 +00:00
import React from 'react'
import { Link } from 'react-router-dom'
2021-02-11 20:01:04 +00:00
2021-02-17 01:34:27 +00:00
const Homepage = () => {
2021-02-11 20:01:04 +00:00
return (
2021-02-12 10:31:40 +00:00
<div className='Homepage'>
<h1>UNO</h1>
2021-02-17 01:34:27 +00:00
<Link to='/play'><button>START GAME</button></Link>
2021-02-11 20:01:04 +00:00
</div>
)
}
2021-02-17 01:34:27 +00:00
export default Homepage