mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 07:47:55 +01:00
13 lines
329 B
React
13 lines
329 B
React
|
import Component from '../Component';
|
||
|
|
||
|
/**
|
||
|
* Attributes:
|
||
|
* - type: numeric, checkbox
|
||
|
*/
|
||
|
export default class TableCell extends Component {
|
||
|
view(vnode) {
|
||
|
this.attrs.addClassNames('mdc-data-table__cell', `mdc-data-table__cell--${this.attrs.get('type')}`);
|
||
|
return <td {...this.attrs.all()}>{vnode.children}</td>;
|
||
|
}
|
||
|
}
|