import { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, } from "@/components/ui/table" interface BlogTableProps { blogs: { }[] } export default function BlogTable({ blogs }: BlogTableProps) { return (