feat: add rich text editor component for content creation page

This commit is contained in:
fredy.siswanto
2025-03-02 23:13:09 +07:00
parent 1486d3a7b7
commit 5cfad29302
5 changed files with 908 additions and 1 deletions
+4 -1
View File
@@ -1,6 +1,7 @@
import { Field, Input, Label, Select } from '@headlessui/react'
import { SearchIcon } from '~/components/icons/search'
import DefaultTextEditor from '~/components/ui/text-editor'
import { TitleDashboard } from '~/components/ui/title-dashboard'
export const CreateContentsPage = () => {
@@ -36,7 +37,9 @@ export const CreateContentsPage = () => {
</div>
</div>
<section></section>
<section>
<DefaultTextEditor />
</section>
</div>
)
}