import React from 'react' import { Icon } from 'antd' import "./index.less" export default class GroupCard extends React.Component { constructor(props) { super(props) this.state = { showContent: true } } render() { return (
{this.props.title}
{this.props.tips}
{ this.setState({showContent: !this.state.showContent}) }}> { this.state.showContent ? : }
{ this.state.showContent &&
{this.props.children}
}
) } }