Files
formbricks/apps/web/components/layout/LimitedWidth.tsx
T
Matti Nannt 5c378bc8ce Feature/monorepo #95 (#105)
Move repository into a monorepo with turborepo and pnpm.
This is a big change in the way the code is organized, used and deployed.
2022-10-13 09:46:43 +02:00

10 lines
220 B
TypeScript

interface Props {
children?: React.ReactNode;
}
const LimitedWidth: React.FC<Props> = ({ children }) => {
return <main className="mx-auto h-full w-full max-w-5xl">{children}</main>;
};
export default LimitedWidth;