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} />
}