turkmentv_front/app/(main)/auth/layout.tsx

16 lines
292 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
interface IProps {
children: React.ReactNode;
}
function RootLayout({ children }: IProps) {
return (
<div className="h-screen">
<div className="container h-full">
<div className="inner h-full">{children}</div>
</div>
</div>
);
}
export default RootLayout;