Files
imphnen-frontend-service/apps/backoffice/src/app/layout.tsx
T

13 lines
262 B
TypeScript
Raw Normal View History

2025-03-17 09:39:04 +07:00
import { FC, ReactElement } from 'react';
import { Outlet } from 'react-router-dom';
export const AppLayout: FC = (): ReactElement => {
return (
<main className="bg-primary-50 min-h-screen">
<Outlet />
</main>
);
};
export default AppLayout;