warnings fixed

This commit is contained in:
brkcvn
2023-11-15 13:16:34 +03:00
parent 77408259d2
commit 9263d1063c
15 changed files with 24 additions and 19 deletions

View File

@@ -0,0 +1,3 @@
export default function FormHeader({ title }: { title: string }) {
return <h1 className="text-4xl">{title}</h1>;
}