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

5 lines
196 B
TypeScript

import { ReactNode } from 'react';
export const NarrowPageLayout = ({ children }: { children: ReactNode }) => {
return <div className="flex-1 p-8 mx-auto w-full max-w-7xl">{children}</div>;
};