yylib-quick-mobile
Version:
yylib-quick-mobile
21 lines (17 loc) • 377 B
JavaScript
/**
* Created By whh 2017/12/26
* */
import React, {Component} from 'react';
class YYTab extends React.Component {
render() {
let { children} = this.props;
return (
<div style={{"height":"100%"}}>
{children}
</div>
)
}
}
YYTab.defaultProps = {
}
module.exports=YYTab;