# This is the 1st commit message: first commit # This is the commit message #2: fixed cache
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import SonCreationForm from "@/components/SonCreationForm";
|
|
|
|
export default function NewSonPage() {
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-bold mb-4">Create New Son</h1>
|
|
<SonCreationForm />
|
|
</div>
|
|
);
|
|
}
|