dragon-mobile-ui
Version:
UI for react.js
21 lines (13 loc) • 339 B
JSX
import PropTypes from 'prop-types';
import React, { Component, Children } from 'react';
class ModalFooter extends Component {
render () {
const { children, ...others } = this.props;
return (
<div className="ui-modal-footer" {...others}>
{children}
</div>
);
}
}
export default ModalFooter;