2024-06-12 15:15:22 +00:00
|
|
|
import {
|
|
|
|
Table,
|
|
|
|
TableBody,
|
|
|
|
TableCaption,
|
|
|
|
TableCell,
|
|
|
|
TableHead,
|
|
|
|
TableHeader,
|
|
|
|
TableRow,
|
|
|
|
} from "@/components/ui/table"
|
2024-06-12 15:53:19 +00:00
|
|
|
import FancyForm from "app/ui/forms/fancyForm"
|
2024-06-12 15:15:22 +00:00
|
|
|
|
|
|
|
export default function Page() {
|
2024-06-12 15:53:19 +00:00
|
|
|
return <FancyForm />
|
2024-06-12 15:15:22 +00:00
|
|
|
}
|