15 lines
252 B
JavaScript
15 lines
252 B
JavaScript
'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'
|
|
/>
|
|
)
|
|
}
|