import { Form } from "./Form"; import { getMessage, greet } from "./funcs"; import { ServerForm } from "./ServerForm"; export default function HomePage() { return (

Server Form

Client Form

); } export const getConfig = async () => { return { render: "dynamic", } as const; };