2024-06-12 09:00:59 +00:00
|
|
|
import PubForm from "app/ui/forms/pub";
|
2024-06-17 10:41:21 +00:00
|
|
|
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
|
|
|
}
|