diff options
Diffstat (limited to 'components/voerBord.tsx')
-rw-r--r-- | components/voerBord.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/voerBord.tsx b/components/voerBord.tsx index 8ee758b..946aa9c 100644 --- a/components/voerBord.tsx +++ b/components/voerBord.tsx @@ -20,13 +20,13 @@ export function VoerBord(props: { <tbody> { [...Array(props.height).keys()].map((row) => ( - <tr> + <tr key={`r-${row}`}> {[...Array(props.width).keys()].map((column) => ( <td style={{ position: "relative", width: "100%", padding: 0 - }}> + }} key={`c-${row}x${column}`}> <div style={{ display: "block", marginTop: "100%" |