Update dependencies
This commit is contained in:
@@ -61,12 +61,14 @@ export default function SquareNumberArray({
|
||||
{
|
||||
value.map((row, rowIndex) => (
|
||||
<tr
|
||||
// eslint-disable-next-line @eslint-react/no-array-index-key
|
||||
key={`squareNumberArrayRow${rowIndex}`}
|
||||
className=""
|
||||
>
|
||||
{
|
||||
row.map((cell, cellIndex) => (
|
||||
<td
|
||||
// eslint-disable-next-line @eslint-react/no-array-index-key
|
||||
key={`squareNumberArrayCell${rowIndex}${cellIndex}`}
|
||||
className="w-8 h-8 border"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user