From 450b5a10d804a592ed1d2504df262831ed3cb9b0 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Thu, 7 Jan 2021 11:14:49 +0100 Subject: tbody toegevoegd aan voerBord --- src/components/voerBord.tsx | 52 +++++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 25 deletions(-) (limited to 'src/components') diff --git a/src/components/voerBord.tsx b/src/components/voerBord.tsx index c430d02..3e319a1 100644 --- a/src/components/voerBord.tsx +++ b/src/components/voerBord.tsx @@ -8,30 +8,32 @@ export function VoerBord(props: VoerBordProps) { borderSpacing: 8, width: "100%" }}> - { - [...Array(props.height)].map(() => ( - - {[...Array(props.width)].map(() => ( - -
-
- - ))} - - )) - } + + { + [...Array(props.height)].map(() => ( + + {[...Array(props.width)].map(() => ( + +
+
+ + ))} + + )) + } + } -- cgit v1.2.3