import React from 'react' import { Table, Icon, Card, Body, Image, Flex } from 'playbook-ui' const TableWithCollapsibleWithCustomContent = (props) => { const Content = () => { return ( ); }; return ( {'Column 1'} {'Column 2'} {'Column 3'} {'Column 4'} {'Column 5'} {''} } {...props} > {'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 TableWithCollapsibleWithCustomContent