123456789101112131415161718192021222324 |
- import React from 'react';
- import theme from 'react-quill/dist/quill.snow.css'
- import ReactQuill from 'react-quill'
- class Site extends React.Component {
- constructor(props) {
- super(props)
- this.state = { text: '' }
- this.handleChange = this.handleChange.bind(this)
- }
- handleChange(value) {
- this.setState({ text: value })
- }
- render() {
- return (
- <ReactQuill value={this.state.text}
- onChange={this.handleChange} />
- )
- }
- }
- export default Site;
|