39 lines
827 B
TypeScript
39 lines
827 B
TypeScript
import { Card, Grid } from "@mui/material";
|
|
import { useParams } from "react-router-dom";
|
|
import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs";
|
|
import Page from "../../../components/Page";
|
|
import useSettings from "../../../hooks/useSettings";
|
|
import List from "./List";
|
|
|
|
|
|
|
|
export default function Divisions() {
|
|
const { themeStretch } = useSettings();
|
|
|
|
const { corporate_id } = useParams();
|
|
|
|
const pageTitle = 'Diagnosis';
|
|
return (
|
|
<Page title={ pageTitle }>
|
|
|
|
<HeaderBreadcrumbs
|
|
heading={ pageTitle }
|
|
links={[
|
|
{
|
|
name: 'Master',
|
|
href: '/master',
|
|
},
|
|
{
|
|
name: 'Diagnosis',
|
|
href: '/master/diagnosis',
|
|
},
|
|
]}
|
|
/>
|
|
|
|
<Card>
|
|
<List />
|
|
</Card>
|
|
</Page>
|
|
);
|
|
}
|