import React from 'react'
import { Table, Card, Icon, Body } from 'playbook-ui'
const TableWithCollapsibleWithCustomClick = (props) => {
const Content = () => {
return (
Nested content inside a Table Row
);
};
return (
{'Column 1'}
{'Column 2'}
{'Column 3'}
{'Column 4'}
{'Column 5'}
{''}
}
toggleCellId="cell-1"
{...props}
>
{'Value 1'}
{'Value 2'}
{'Value 3'}
{'Value 4'}
{'Value 5'}
}
toggleCellId="cell-2"
{...props}
>
{'Value 1'}
{'Value 2'}
{'Value 3'}
{'Value 4'}
{'Value 5'}
}
toggleCellId="cell-3"
{...props}
>
{'Value 1'}
{'Value 2'}
{'Value 3'}
{'Value 4'}
{'Value 5'}
)
}
export default TableWithCollapsibleWithCustomClick