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