1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-01-03 20:19:17 +00:00

list tags

This commit is contained in:
Sosuke Suzuki
2017-09-30 16:22:04 +09:00
parent 5248c05e61
commit 3154110de1
4 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
/**
* @fileoverview Micro component for showing TagList.
*/
import React, { PropTypes } from 'react'
import styles from './TagListItem.styl'
import CSSModules from 'browser/lib/CSSModules'
/**
* @param {string} name
*/
const TagListItem = (({name}) => {
return (
<button>
{name}
</button>
)
})
export default CSSModules(TagListItem, styles)

View File