first commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
export function DataTable({
|
||||
headers,
|
||||
children
|
||||
}: {
|
||||
headers: string[];
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<div className="hidden overflow-hidden rounded-2xl border border-white/15 bg-white/[0.06] md:block">
|
||||
<table className="w-full border-collapse text-left text-sm">
|
||||
<thead className="bg-white/10 text-xs uppercase tracking-wide text-white/50">
|
||||
<tr>
|
||||
{headers.map((head) => (
|
||||
<th key={head} className="px-4 py-3 font-semibold">
|
||||
{head}
|
||||
</th>
|
||||
))}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>{children}</tbody>
|
||||
</table>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user