feat: Another page template

- Template untuk page Data Akun dan Validasi Transaksi
This commit is contained in:
Hafid Nur
2025-03-27 15:06:30 +07:00
parent 7f9a106fca
commit bc9a0fd740
5 changed files with 73 additions and 1 deletions
@@ -0,0 +1,18 @@
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 max-w-[1280px] w-full flex">
<BackofficeSidebar />
<div className="flex-1 overflow-auto">
<Outlet />
</div>
</div>
</div>
);
};
export default AppLayout;