feat: create formlayout and create collection form

This commit is contained in:
Sonny
2024-04-28 19:34:15 +02:00
committed by Sonny
parent 602813ec05
commit 97044907ee
13 changed files with 333 additions and 42 deletions

9
inertia/pages/app.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { Link } from '@inertiajs/react';
export default function AppPage() {
return (
<div>
<Link href="/collections/create">Add collection</Link>
</div>
);
}