@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
25 lines (24 loc) • 639 B
JavaScript
import React from 'react';
import { defaultProps } from "./props/defaultProps";
import { propTypes } from "./props/propTypes";
import { Container } from '@zohodesk/components/lib/Layout';
export default class Table extends React.Component {
render() {
let {
children,
dataId,
customClass
} = this.props;
return /*#__PURE__*/React.createElement(Container, {
dataId: dataId,
className: customClass
}, children);
}
}
Table.propTypes = propTypes;
Table.defaultProps = defaultProps; // if (__DOCS__) {
// Table.docs = {
// componentGroup: 'Table',
// folderName: 'Setup'
// };
// }