subman-nextjs/src/app/publication/create/page.tsx

7 lines
192 B
TypeScript
Raw Normal View History

2024-06-12 09:00:59 +00:00
import PubForm from "app/ui/forms/pub";
import { getGenres } from "app/lib/get";
export default async function Page() {
const genres = await getGenres()
return <PubForm genres={genres} />
2024-06-12 09:00:59 +00:00
}