@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
22 lines • 586 B
JavaScript
import React from 'react';
import { defaultProps } from "./props/defaultProps";
import { propTypes } from "./props/propTypes";
import { Container } from '@zohodesk/components/es/v1/Layout';
export default function Table(props) {
let {
children,
dataId,
customClass
} = 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'
// };
// }