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

View File

@@ -13,6 +13,7 @@ import { AuthProvider } from '../contexts/LaravelAuthContext';
import AuthGuard from '../guards/AuthGuard';
import { Link, useParams, useSearchParams } from 'react-router-dom';
import DoctorRating from '@/pages/Report/DoctorRating_v2/Index';
import DoctorOnline from '@/pages/Report/DoctorOnline/Index';
import KatalogDokter from '@/pages/Report/KatalogDokter/Index';
// ----------------------------------------------------------------------
@@ -446,6 +447,10 @@ export default function Router() {
path: 'report/doctor-rating',
element: <DoctorRating/>,
},
{
path: 'report/doctor-online',
element: <DoctorOnline/>,
},
{
path: 'report/katalog-dokter',
element: <KatalogDokter/>,