remove extra export

This commit is contained in:
Sinclair Chen 2022-08-10 14:23:11 -07:00
parent 193e5b59d2
commit fb883a6304

View File

@ -279,7 +279,7 @@ const useUploadMutation = (editor: Editor | null) =>
}
)
export function RichContent(props: { content: JSONContent | string }) {
function RichContent(props: { content: JSONContent | string }) {
const { content } = props
const editor = useEditor({
editorProps: { attributes: { class: proseClass } },