Presupuestador_web/client/src/components/Layout/LayoutContent.tsx
2024-06-09 22:04:46 +02:00

12 lines
329 B
TypeScript

import { PropsWithChildren } from "react";
export const LayoutContent = ({ children }: PropsWithChildren) => {
return (
<main className='flex min-h-[calc(100vh_-_theme(spacing.16))] flex-1 flex-col gap-4 bg-muted/40 p-4 md:gap-8 md:p-10'>
{children}
</main>
);
};
LayoutContent.displayName = "LayoutContent";