export default class CardView extends PureComponent { static propTypes = { children: PropTypes.any, } render() { const { children } = this.props return (
{children}
) } }