From 0ddd056990d33f335cefc7f0a633e837ce7e116a Mon Sep 17 00:00:00 2001 From: lonkaars Date: Fri, 19 Feb 2021 20:32:24 +0100 Subject: working connect 4 game on website --- components/voerBord.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'components') diff --git a/components/voerBord.tsx b/components/voerBord.tsx index ce35ed8..74db65d 100644 --- a/components/voerBord.tsx +++ b/components/voerBord.tsx @@ -1,9 +1,18 @@ +function Disc() { + return
+} + export function VoerBord(props: { width: number; height: number; onMove: (move: number) => void; }) { - return @@ -21,6 +30,7 @@ export function VoerBord(props: { display: "block", marginTop: "100%" }}/> +