React Bootstrap editor
Lightweight Rich Text Editor based on Edkit, React & Bootstrap

Demo
https://ideapp.dev/React-MobX-Bootstrap-ts/#/component
Tools
https://github.com/idea2app/Edkit#tools
Usage
Installation
Shell command
npm install react react-bootstrap-editor
HTML entry
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css"
/>
</head>
Initialization
import { PureComponent } from 'react';
import { Editor } from 'react-bootstrap-editor';
export class PostEdit extends PureComponent {
render() {
return <Editor value="<p>test</p>" onChange={console.log} />;
}
}