react-server675fbba4
react-serverfilesexamplesmantinesrcpagesform.tsx
examples/mantine/src/pages/form.tsxtsx389 B958406b7
import MyFormSimple from "../components/forms/MyFormSimple";

export default async function FormsPage() {
  const data = await getData();

  return (
    <div>
      <title>{data.title}</title>
      <h1>{data.headline}</h1>
      <MyFormSimple />
    </div>
  );
}

const getData = async () => {
  const data = {
    title: "Forms",
    headline: "Mantine Forms",
  };

  return data;
};