subman-nextjs/src/app/submission/page.tsx

8 lines
203 B
TypeScript
Raw Normal View History

2024-06-12 15:53:19 +00:00
import FancyForm from "app/ui/forms/fancyForm"
2024-06-13 10:11:09 +00:00
import { getGenres } from "app/lib/get"
2024-06-12 15:15:22 +00:00
2024-06-13 10:11:09 +00:00
export default async function Page() {
const genres = await getGenres()
return <FancyForm genres={genres} />
2024-06-12 15:15:22 +00:00
}