Create titres

This commit is contained in:
2024-06-22 07:52:32 +04:00
parent 6870f1e459
commit 06879763bc
6 changed files with 152 additions and 39 deletions
@@ -0,0 +1,14 @@
'use client'
import CreateForm from '../forms/create-form.js'
export default function CreateTitre(props) {
return (
<CreateForm
{...props}
collection='titres'
dialogText='Écrivez votre titre'
label='titre'
/>
)
}