lucid-ui
Version:
A UI component library from AppNexus.
19 lines • 1.68 kB
JavaScript
import React from 'react';
import createClass from 'create-react-class';
import { Panel, Table } from '../../../index';
var Thead = Table.Thead,
Tbody = Table.Tbody,
Th = Table.Th,
Tr = Table.Tr,
Td = Table.Td;
export default createClass({
render: function render() {
return /*#__PURE__*/React.createElement(Panel, {
isGutterless: true
}, /*#__PURE__*/React.createElement(Panel.Header, null, /*#__PURE__*/React.createElement("strong", null, "Header")), /*#__PURE__*/React.createElement(Table, {
style: {
width: '100%'
}
}, /*#__PURE__*/React.createElement(Thead, null, /*#__PURE__*/React.createElement(Tr, null, /*#__PURE__*/React.createElement(Th, null, "Cell"), /*#__PURE__*/React.createElement(Th, null, "Cell"), /*#__PURE__*/React.createElement(Th, null, "Cell"))), /*#__PURE__*/React.createElement(Tbody, null, /*#__PURE__*/React.createElement(Tr, null, /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell")), /*#__PURE__*/React.createElement(Tr, null, /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell")), /*#__PURE__*/React.createElement(Tr, null, /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell")), /*#__PURE__*/React.createElement(Tr, null, /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell"), /*#__PURE__*/React.createElement(Td, null, "Cell")))));
}
});