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

15 lines
271 B
JavaScript
Raw Normal View History

2024-06-18 11:11:15 +04:00
'use client'
2024-06-21 12:39:37 +04:00
import CreateForm from '../forms/create-form.js'
2024-06-18 11:11:15 +04:00
2024-06-21 12:39:37 +04:00
export default function WriteComment(props) {
2024-06-18 11:11:15 +04:00
return (
2024-06-21 12:39:37 +04:00
<CreateForm
{...props}
collection='commentaires'
dialogText='Écrivez votre commentaire'
label='commentaire'
/>
2024-06-18 11:11:15 +04:00
)
}