From d2c2cc62a4c2e1ac10f8434bea7bb834da820869 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sat, 16 Jan 2021 11:40:36 +0100 Subject: semi working next project --- src/components/voerBord.tsx | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/components/voerBord.tsx (limited to 'src/components/voerBord.tsx') diff --git a/src/components/voerBord.tsx b/src/components/voerBord.tsx deleted file mode 100644 index 3e319a1..0000000 --- a/src/components/voerBord.tsx +++ /dev/null @@ -1,39 +0,0 @@ -interface VoerBordProps { - width: number; - height: number; -} - -export function VoerBord(props: VoerBordProps) { - return - - { - [...Array(props.height)].map(() => ( - - {[...Array(props.width)].map(() => ( - - ))} - - )) - } - -
-
-
-
-} -- cgit v1.2.3