Me learning react like an absolute chungus
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
378B

  1. type ModalProps = {
  2. handleClose: () => void;
  3. show: boolean;
  4. children: any;
  5. };
  6. const Modal = (props: ModalProps) => {
  7. const showHideClassName = props.show
  8. ? "modal display-block"
  9. : "modal display-none";
  10. return (
  11. <div className={showHideClassName}>
  12. <section className="modal-main">{props.children}</section>
  13. </div>
  14. );
  15. };
  16. export default Modal;