UNPKG

element-react-codish

Version:
15 lines (12 loc) 315 B
/* @flow */ import React from 'react'; import { Component } from '../../libs'; export default class DialogBody extends Component { render(): React.Element<any> { return ( <div style={this.style()} className={this.className('el-dialog__body')}> { this.props.children } </div> ) } }