- Update sidebar link untuk halaman Data Pengiriman Hadiah - Penyesuaian kecil pada style DataTable dan header page
19 lines
573 B
TypeScript
19 lines
573 B
TypeScript
import { FC, ReactElement } from 'react';
|
|
import { Outlet } from 'react-router-dom';
|
|
import { BackofficeSidebar } from '@imphnen-frontend-service/ui/organisms';
|
|
|
|
export const AppLayout: FC = (): ReactElement => {
|
|
return (
|
|
<div className="bg-primary-50 min-h-screen flex justify-center">
|
|
<div className="bg-primary-50 min-h-screen w-full flex">
|
|
<BackofficeSidebar />
|
|
<div className="flex-1 overflow-auto lg:max-w-[1000px] 2xl:max-w-[1280px] mx-auto">
|
|
<Outlet />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AppLayout;
|