Merge branch 'staging' of itcorp.primaya.id:rajif/aso into staging

This commit is contained in:
2023-09-21 10:56:09 +07:00
2 changed files with 1 additions and 39 deletions

View File

@@ -190,7 +190,7 @@ export default function Corporates() {
</TableBody>
</Table>
<Typography sx={{...headStyle, px:3, fontSize:'24px'}}>Docs (T&C)</Typography>
<Typography sx={{...headStyle, px:3, fontSize:'24px'}}>Docs (Terms & Conditions)</Typography>
<Table>
<TableBody>

View File

@@ -1,38 +0,0 @@
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_2';
export default function DoctorRating(){
const { themeStretch } = useSettings();
const { id } = useParams();
const pageTitle = 'Doctor Rating';
return(
<Page title = {pageTitle}>
<Container maxWidth = {themeStretch ? false : 'xl'}>
<HeaderBreadcrumbs heading= {pageTitle}
links={[
{
name: 'Report',
href: '/report',
},
{
name: 'Doctor Rating',
href: '/doctorrating',
},
]}
/>
<List/>
</Container>
</Page>
);
}