mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-12 03:09:41 -06:00
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
196 B
TypeScript
10 lines
196 B
TypeScript
interface Props {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const FullWidth: React.FC<Props> = ({ children }) => {
|
|
return <main className="h-full w-full">{children}</main>;
|
|
};
|
|
|
|
export default FullWidth;
|