feat: backoffice login page

This commit is contained in:
Hafid Nur
2025-03-27 02:42:57 +07:00
parent daeeb09798
commit 90ab974e03
3 changed files with 39 additions and 2 deletions
-2
View File
@@ -1,11 +1,9 @@
import { FC, ReactElement } from 'react';
import { Outlet } from 'react-router-dom';
import { Navbar } from '@imphnen-frontend-service/ui/organisms';
export const AppLayout: FC = (): ReactElement => {
return (
<main className="bg-primary-50 min-h-screen">
<Navbar />
<Outlet />
</main>
);