{
defaultExpanding: true,
collapsible: true
}
import React from 'react';
import { LaPanel, LaPanelHeader, LaPanelBody } from 'react-collapsible-panel';
class Example extends React.Component {
render() {
return <LaPanel className="example-panel">
<LaPanelHeader>This is title</LaPanelHeader>
<LaPanelBody>This body</LaPanelBody>
</LaPanel>
}
}