1.0.6 • Published 1 year ago

bumawiki-editor v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

bumawiki-editor

부마위키 문서 편집기 라이브러리입니다.

use :

yarn add bumawiki-editor

or

npm install bumawiki-editor
import bumawikiEditor from 'bumawiki-editor'
import React from 'react'

const App = () => {
	const [contents, setContents] = React.useState('')

	const htmlConfig = {
		__html: bumawikiEditor(contents),
	}

	return <div dangerouslySetInnerHTML={htmlConfig} />
}