mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-26 10:42:16 -06:00
10 lines
220 B
TypeScript
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;
|