forked from cerc-io/snowballtools-base
13 lines
326 B
TypeScript
13 lines
326 B
TypeScript
import type React from 'react';
|
|
interface ScreenWrapperProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function ScreenWrapper({ children }: ScreenWrapperProps) {
|
|
return (
|
|
<div className="min-h-[calc(100vh-4rem)] bg-background flex flex-col gap-4 bg-background xl:px-8 pt-20 pb-8 px-4">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|