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

remove extra semicolon and fix indent

This commit is contained in:
Sosuke Suzuki
2017-10-07 04:31:35 +09:00
parent f805e8a688
commit 046e6af489

View File

@@ -11,12 +11,12 @@ import CSSModules from 'browser/lib/CSSModules'
*/
const TagListItem = ({name, handleClickTagListItem}) => (
<button styleName='tagList-item' onClick={() => handleClickTagListItem(name)}>
<span styleName='tagList-item-name'>
{`# ${name}`}
</span>
</button>
);
<button styleName='tagList-item' onClick={() => handleClickTagListItem(name)}>
<span styleName='tagList-item-name'>
{`# ${name}`}
</span>
</button>
)
TagListItem.propTypes = {
name: PropTypes.string.isRequired,