import React from 'react'; import './index.less'; import Module from '../Module'; function Card(props) { const { style, children, title } = props; return (
{title}
{children}
); } Card.propTypes = {}; export default Card;