1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

fixed errors from lint

This commit is contained in:
Matus Benko
2017-09-08 18:46:17 +02:00
parent 3804a746df
commit 94e6f89d07
2 changed files with 5 additions and 11 deletions

View File

@@ -275,17 +275,17 @@ FolderItem.propTypes = {
}
class Handle extends React.Component {
render() {
render () {
return (
<div styleName='folderItem-drag-handle'>
<i className="fa fa-reorder" />
<i className='fa fa-reorder' />
</div>
)
}
}
class SortableFolderItemComponent extends React.Component {
render() {
render () {
const StyledHandle = CSSModules(Handle, this.props.styles)
const DragHandle = SortableHandle(StyledHandle)