mirror of
https://github.com/wassname/talk.git
synced 2026-07-18 12:40:13 +08:00
22 lines
359 B
JavaScript
22 lines
359 B
JavaScript
import React, {Component} from 'react';
|
|
import styles from './style.css';
|
|
|
|
class OffTopicCheckbox extends Component {
|
|
constructor () {
|
|
this.state = {
|
|
checked: false;
|
|
}
|
|
}
|
|
render() {
|
|
return (
|
|
<div className={styles.respect}>
|
|
OffTopicCheckbox
|
|
<input type
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default OffTopicCheckbox;
|
|
|