Merge remote-tracking branch 'origin/staging' into origin/production
This commit is contained in:
35
frontend/dashboard/src/pages/Report/DoctorOnline/Index.tsx
Executable file
35
frontend/dashboard/src/pages/Report/DoctorOnline/Index.tsx
Executable 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>
|
||||
);
|
||||
}
|
||||
1012
frontend/dashboard/src/pages/Report/DoctorOnline/List.tsx
Executable file
1012
frontend/dashboard/src/pages/Report/DoctorOnline/List.tsx
Executable file
File diff suppressed because it is too large
Load Diff
0
frontend/dashboard/src/pages/Report/Rujukan/Index.tsx
Normal file → Executable file
0
frontend/dashboard/src/pages/Report/Rujukan/Index.tsx
Normal file → Executable file
0
frontend/dashboard/src/pages/Report/Rujukan/List.tsx
Normal file → Executable file
0
frontend/dashboard/src/pages/Report/Rujukan/List.tsx
Normal file → Executable 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/>,
|
||||
|
||||
Reference in New Issue
Block a user