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

8 lines
199 B
TypeScript
Raw Normal View History

import { getGenres } from "app/lib/get";
2024-06-11 17:14:30 +00:00
import StoryForm from "app/ui/forms/story";
export default async function Page() {
const genres = await getGenres()
return <StoryForm genres={genres} />
2024-06-11 17:14:30 +00:00
}