jimu-mobile
Version:
积木组件库助力移动端开发
24 lines (20 loc) • 377 B
JavaScript
/**
* zhangjingwei 03/20/2017
*/
import React from 'react';
import ReactDOM, { render } from 'react-dom';
class Card extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="jimu_card">
<div {...this.props}>
{this.props.children}
</div>
</div>
);
}
}
export default Card;