client portal dashboard & claim-reports

This commit is contained in:
Muhammad Fajar
2022-11-10 10:00:24 +07:00
parent ce8f59c2ff
commit ca36d1a593
14 changed files with 513 additions and 429 deletions

View File

@@ -0,0 +1,19 @@
// react
import React from 'react';
// mui
import { Dialog, DialogTitle, DialogContent } from '@mui/material';
export default function Popup(props: any) {
const { title, children, openPopup, setOpenPopup } = props;
return (
<Dialog open={openPopup}>
<DialogTitle>
<div>Title goes here.</div>
</DialogTitle>
<DialogContent>
<div>Content goes here.</div>
</DialogContent>
</Dialog>
);
}