import { Cycle, render_and_copy } from "./common.tsx"; const emojis = [ "🏡", "🌳", "🌲", "🎄", "🐦", "🦊", "🦌", "🐶", "🐕", "🐩", "🦈", ]; const Emoji = ({ children }: { children: string }) =>
{children}
; const Cell = () => ( {...emojis.map(e => {e})} ); render_and_copy(
{...Array.from({ length: 49 }, () => )}
);