Files
aso/frontend/dashboard/src/pages/CustomerService/FinalLog/Index.tsx
2024-01-07 08:14:38 +07:00

31 lines
636 B
TypeScript

import { Card, Stack } from "@mui/material";
import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs";
import Page from "../../../components/Page";
import List from "./List";
export default function Claims() {
const pageTitle = 'Final LOG';
return (
<Page title={ pageTitle } sx={{ mx: 2}}>
<HeaderBreadcrumbs
heading={ pageTitle }
links={[
{ name: 'Dashboard', href: '/dashboard' },
{
name: 'Final LOG',
href: '/final-log',
},
]}
/>
{/* <Stack> */}
<List />
{/* </Stack> */}
</Page>
);
}