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

some rename plural form or easy to understand

This commit is contained in:
Sosuke Suzuki
2017-10-03 03:03:33 +09:00
parent e300b33a4f
commit 4689ddeb98
2 changed files with 9 additions and 9 deletions

View File

@@ -7,12 +7,12 @@ import CSSModules from 'browser/lib/CSSModules'
/**
* @param {string} name
* @param {Function} handleClickTagButton
* @param {Function} handleClickTagListItem
*/
const TagListItem = ({name, handleClickTagButton}) => {
const TagListItem = ({name, handleClickTagListItem}) => {
return (
<button styleName='tagList-item' onClick={(e) => handleClickTagButton(e, name)}>
<button styleName='tagList-item' onClick={(e) => handleClickTagListItem(e, name)}>
<span styleName='tagList-item-name'>
{`# ${name}`}
</span>