mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-28 20:40:06 +00:00
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
const html = require('yo-yo')
|
|
|
|
module.exports = (props) => {
|
|
return html`
|
|
<td class="BrowserTable-rowColumn BrowserTable-column">
|
|
${props.getItemIcon()} ${props.value}
|
|
</td>
|
|
`
|
|
}
|