UNPKG

yylib-quick-mobile

Version:

yylib-quick-mobile

18 lines 397 B
/** * Created by ByChan on 2017.8.29. */ import React from 'react' import { WingBlank } from 'antd-mobile' /* * * */ class YYWingBlank extends React.Component { render () { let {size,children}=this.props; return (<WingBlank size={this.props.size} {...this.props}>{children}</WingBlank>) } } YYWingBlank.defaultProps = { size:"lg", } module.exports = YYWingBlank;