import React from 'react'; import {Collapse} from '../../src'; import {VariableHeight} from './VariableHeight'; export class Nested extends React.PureComponent { constructor(props) { super(props); this.state = {isOpened: false}; } render() { const {isOpened} = this.state; return (
); } }