Typo: WriteComment to CreateComment

This commit is contained in:
2024-06-22 07:58:04 +04:00
parent 06879763bc
commit 6cd2a0c438
3 changed files with 6 additions and 6 deletions
@@ -0,0 +1,14 @@
'use client'
import CreateForm from '../forms/create-form.js'
export default function CreateComment(props) {
return (
<CreateForm
{...props}
collection='commentaires'
dialogText='Écrivez votre commentaire'
label='commentaire'
/>
)
}