mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-02 19:40:35 -05:00
5c378bc8ce
Move repository into a monorepo with turborepo and pnpm. This is a big change in the way the code is organized, used and deployed.
10 lines
220 B
TypeScript
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;
|