Files
imphnen-frontend-service/apps/dimentorin/src/app/auth/register/otp/layout.tsx
T

13 lines
262 B
TypeScript
Raw Normal View History

2025-05-26 20:49:57 +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;