mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
remove unnecesarry "return"
This commit is contained in:
@@ -103,14 +103,13 @@ class SideNav extends React.Component {
|
|||||||
return key
|
return key
|
||||||
})
|
})
|
||||||
return (
|
return (
|
||||||
tagList.map(tag => {
|
tagList.map(tag => (
|
||||||
return (<TagListItem
|
<TagListItem
|
||||||
name={tag}
|
name={tag}
|
||||||
handleClickTagListItem={this.handleClickTagListItem.bind(this)}
|
handleClickTagListItem={this.handleClickTagListItem.bind(this)}
|
||||||
key={tag}
|
key={tag}
|
||||||
/>
|
/>
|
||||||
)
|
))
|
||||||
})
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user