Files
formbricks/components/layout/LimitedWidth.tsx
2022-06-24 23:39:37 +09:00

10 lines
220 B
TypeScript

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