import React from 'react'; import PropTypes from 'prop-types'; import { Modal, ModalHeader, ModalBody } from 'reactstrap'; const ArchiveCreateModal = (props) => { // const [isArchiveCreateModalShown, setIsOpenShareLinkForm] = useState(false); return ( アーカイブを作成する 試作 ); }; // export default class ArchiveCreateModal extends React.PureComponet { // constructor(props) { // super(props); // this.state = { // show: false, // isIncludeComment: false, // isIncludeFile: false, // isCreateAllSubordinatedPage: false, // }; // this.show = this.show.bind(this); // this.cancel = this.cancel.bind(this); // this.save = this.save.bind(this); // } // show() { // } // cancel() { // this.hide(); // } // hide() { // this.setState({ show: false }); // } // save() { // } // render() { // return ( // // // アーカイブ作成 // // //
// // // // // // // //
//
//
// ); // } ArchiveCreateModal.propTypes = { isOpen: PropTypes.bool.isRequired, onClose: PropTypes.func.isRequired, }; export default ArchiveCreateModal;