A task table with status filter chips that reorganize live data — clicking All, To do, In Progress, or Completed smoothly expands and collapses the matching rows.
import FilterTable from "@/components/ui/filter-table"; export default function Default() { return ( <div className="flex min-h-[440px] w-full items-center justify-center bg-[#17181a] p-8"> <FilterTable /> </div> ); }