Changes done in constant folder

This commit is contained in:
2026-07-29 18:40:34 +05:30
parent 152be044ec
commit 65add5799e
7 changed files with 185 additions and 10 deletions

View File

@@ -1,9 +1,7 @@
import React from "react";
import { TableProps } from "@/types/types";
type TableProps = {
headers: string[];
rows: React.ReactNode[][];
};
export default function Table({ headers, rows }: TableProps) {
return (