1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
import PropTypes from 'prop-types'; import React from 'react';
const Dialog = function Dialog(props) { let { title, content, children } = props; children = React.Children.toArray(children);
return <div className="dialog-box" style={{ width: 300 }}> <div className="header" style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}> <h2 className="title">{title}</h2> <span>X</span> </div> <div className="main"> {content} </div> {children.length > 0 ? <div className="footer"> {children} </div> : null } </div>; };
Dialog.defaultProps = { title: '温馨提示' }; Dialog.propTypes = { title: PropTypes.string, content: PropTypes.string.isRequired };
export default Dialog;
|