mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2026-05-08 09:38:55 -04:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import { BusinessForm } from "~/components/forms/business-form";
|
|
import { HydrateClient } from "~/trpc/server";
|
|
|
|
export default function NewBusinessPage() {
|
|
return (
|
|
<HydrateClient>
|
|
<BusinessForm mode="create" />
|
|
</HydrateClient>
|
|
);
|
|
}
|