Components
A customizable implementation of Conway's Game of Life with interactive cells, adjustable parameters, and smooth animations. Features configurable cell colors, grid size, and simulation speed for creating mesmerizing cellular automaton patterns.
Loading preview...
import { Component } from "@/components/ui/game-of-life";
export default function DemoOne() {
return (
<Component
size={10}
interval={500}
backgroundColor="#000000"
cellColor="#ffffff"
/>
);
}