mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-25 18:48:58 -06:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
interface Props {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const FullWidth: React.FC<Props> = ({ children }) => {
|
|
return <main className="w-full h-full">{children}</main>;
|
|
};
|
|
|
|
export default FullWidth;
|