An animated data table that plays an AI-proposed edit sweeping through tabular rows — removed rows tint red and strike through while a newly added row slides in green, resting on the completed diff.
"use client"; import DiffTable from "@/components/ui/diff-table"; export default function DiffTableDemo() { return ( <div className="flex min-h-[340px] w-full items-center justify-center bg-canvas p-8"> <DiffTable /> </div> ); }