Merge remote-tracking branch 'origin/staging' into origin/production

This commit is contained in:
Server D3 Linksehat
2025-01-23 15:41:30 +07:00
11 changed files with 1336 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
import { Card, Grid, Container } 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 Index() {
const { themeStretch } = useSettings();
const { id } = useParams();
const pageTitle = 'Doctor Online';
return (
<Page title={pageTitle}>
<Container maxWidth={themeStretch ? false : 'xl'}>
<HeaderBreadcrumbs
heading={pageTitle}
links={[
{
name: 'Report',
href: '#',
},
{
name: 'Doctor Online',
href: '/report/doctor-online',
},
]}
/>
<List />
</Container>
</Page>
);
}

File diff suppressed because it is too large Load Diff

0
frontend/dashboard/src/pages/Report/Rujukan/Index.tsx Normal file → Executable file
View File

0
frontend/dashboard/src/pages/Report/Rujukan/List.tsx Normal file → Executable file
View File