kanban-app/frontend/src/components/WidePageLayout.tsx

6 lines
194 B
TypeScript
Raw Normal View History

2026-03-20 15:08:39 +00:00
import { ReactNode } from 'react';
export const WidePageLayout = ({ children }: { children: ReactNode }) => {
return <div className="flex-1 p-8 mx-auto w-full max-w-7xl">{children}</div>;
};