react-server675fbba4
react-serverfilesexamplesfile-routerpagesformsindex.tsx
examples/file-router/pages/forms/index.tsxtsx291 B385f3967
import NoteForm from "../../components/form";

export default function FormIndexPage() {
  return (
    <div>
      <h1>Forms Index Page</h1>
      <p>This is the index page for forms in the file-based routing example.</p>
      <NoteForm note={{ title: "", note: "" }} />
    </div>
  );
}