24 lines
424 B
JavaScript
24 lines
424 B
JavaScript
import {
|
|
observer
|
|
} from 'mobx-react';
|
|
import {
|
|
WeaTableNew,
|
|
} from 'comsMobx';
|
|
const WeaTable = WeaTableNew.WeaTable;
|
|
|
|
@observer
|
|
export default class Table extends React.Component {
|
|
render() {
|
|
const {
|
|
tableProps,
|
|
tableStore
|
|
} = this.props;
|
|
|
|
return (
|
|
<WeaTable ecId={`${this && this.props && this.props.ecId || ''}_WeaTable@h6159r`}
|
|
{...tableProps}
|
|
comsWeaTableStore={tableStore}
|
|
/>
|
|
);
|
|
}
|
|
} |