diff --git a/html/emoji-land.tsx b/html/emoji-land.tsx new file mode 100644 index 0000000..606fe9d --- /dev/null +++ b/html/emoji-land.tsx @@ -0,0 +1,41 @@ +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 }, () => )} +
+);