UNPKG

yylib-quick-mobile

Version:

yylib-quick-mobile

14 lines 331 B
/** * Created by ByChan on 2017.8.29. */ import React from 'react' import { WhiteSpace } from 'antd-mobile' class YYWhiteSpace extends React.Component { render () { return (<WhiteSpace size={this.props.size} {...this.props}/>) } } YYWhiteSpace.defaultProps = { size:"md", } module.exports = YYWhiteSpace;