このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/resources/js/component/modal_memo.jsx

39 行
1.2 KiB
JavaScript

import React, { useState } from 'react';
import {
Box,
Dialog,
DialogTitle,
Slide,
Typography
} from '@mui/material';
const Transition = React.forwardRef(function Transition(props, ref) {
return <Slide direction="up" ref={ref} {...props} />;
});
export default function ModalMemo({ show, content, handleClose}){
return (
<Dialog
open={show}
TransitionComponent={Transition}
keepMounted
aria-describedby="alert-dialog-slide-description"
onClose={handleClose}
>
<DialogTitle sx={{padding:'20px 10px',textAlign:'center', borderBottom:'1px solid rgb(239 236 236)'}}>
<span className="ft-16 text-center font-weight-bold">メモ</span>
</DialogTitle>
<Box sx={{ p:'10px', pb:'10px'}}>
<Box id="alert-dialog-slide-description">
<Typography component='p' sx={{ minHeight:'175px', whiteSpace:'pre-wrap', bgcolor:'#F0F0F0', p:'15px' }} className="ft-15 text-black">
{content ? content : '未入力'}
</Typography>
</Box>
</Box>
</Dialog>
)
}