Files
konstitisyon.nu/components/konstitisyon/comments/write-comment.js
T

15 lines
271 B
JavaScript

'use client'
import CreateForm from '../forms/create-form.js'
export default function WriteComment(props) {
return (
<CreateForm
{...props}
collection='commentaires'
dialogText='Écrivez votre commentaire'
label='commentaire'
/>
)
}