Add style to Homepage
co-authored-by: mitchemmc <mitchemmc@gmail.com>
This commit is contained in:
parent
a5034ef576
commit
9ef3b8b213
@ -1,8 +1,20 @@
|
||||
import React from "react";
|
||||
import { A } from "hookrouter";
|
||||
import { navigate } from "hookrouter";
|
||||
import { Container, Flex, Button } from "theme-ui";
|
||||
|
||||
function Home() {
|
||||
return <div><A href="/join">JOIN GAME</A>HOME!</div>
|
||||
return (
|
||||
<Container p={4} sx={{ maxWidth: "300px" }}>
|
||||
<Flex sx={{ flexDirection: "column" }}>
|
||||
<Button m={2} onClick={() => navigate("/game")}>
|
||||
Start Game
|
||||
</Button>
|
||||
<Button m={2} onClick={() => navigate("/join")}>
|
||||
Join Game
|
||||
</Button>
|
||||
</Flex>
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
export default Home;
|
||||
export default Home;
|
||||
|
Loading…
x
Reference in New Issue
Block a user