import React from 'react'; import Row from "./Row"; export default function Maze({labyrinth}) { const maze = labyrinth.grid.map((row, rowIdx) => ); return (
{maze}
); }