import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Checkbox } from "@/components/ui/checkbox"; export function Todo() { const todos = [ { text: "send e-mails", done: false }, { text: "do the visuals", done: false }, { text: "write the contract", done: false }, ]; return ( Todo
{todos.map((todo, i) => (
))}
); }