import React from 'react' import { Table, Background, Icon } from 'playbook-ui' const TableWithCollapsibleWithNestedRows = (props) => { const Content = () => { return ( Expanded Expanded Expanded Expanded Expanded
); }; return ( {'Column 1'} {'Column 2'} {'Column 3'} {'Column 4'} {'Column 5'} {''} } collapsibleSideHighlight={false} > {'Value 1'} {'Value 2'} {'Value 3'} {'Value 4'} {'Value 5'} { } {'Value 1'} {'Value 2'} {'Value 3'} {'Value 4'} {'Value 5'} {''} {'Value 1'} {'Value 2'} {'Value 3'} {'Value 4'} {'Value 5'} {''}
) } export default TableWithCollapsibleWithNestedRows