off topic plugins, and examples

This commit is contained in:
Belen Curcio
2017-04-11 11:23:23 -03:00
parent aef0f433c9
commit e888161fe4
18 changed files with 221 additions and 2 deletions
@@ -0,0 +1,22 @@
import React from 'react';
import styles from './styles.css';
class OffTopicCheckbox extends React.Component {
handleChange = () => {
console.log('handle Change');
}
render() {
return (
<div className={`wapo-styles-offtopic ${styles.offTopic}`}>
<label>
<input type="checkbox" onChange={this.handleChange}/>
Off-Topic
</label>
</div>
)
}
}
export default OffTopicCheckbox;