* MED-109: add doctor role and basic view * add role to accounts * remove old super admin and doctor sql
18 lines
386 B
TypeScript
18 lines
386 B
TypeScript
import { DoctorGuard } from '@kit/doctor/components/doctor-guard';
|
|
import { PageBody, PageHeader } from '@kit/ui/page';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
function DoctorPage() {
|
|
return (
|
|
<>
|
|
<PageHeader description={<Trans i18nKey="common:doctor" />} />
|
|
|
|
<PageBody>
|
|
<div>TBD</div>
|
|
</PageBody>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default DoctorGuard(DoctorPage);
|