ghost-listmonk-connector/ui/app/sons/new/page.tsx
troneras 1fd7dad8e4 # This is a combination of 2 commits.
# This is the 1st commit message:

first commit

# This is the commit message #2:

fixed cache
2024-08-21 02:08:01 +02:00

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>
);
}