Files
formbricks/components/layout/FullWidth.tsx
2022-06-24 21:26:39 +09:00

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;