forked from cerc-io/snowballtools-base
10 lines
250 B
TypeScript
10 lines
250 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 pt-16">{children}</div>
|
|
}
|
|
|