laconic-deploy/packages/frontend/src/components/screen-wrapper/ScreenWrapper.tsx
2025-02-20 09:43:07 -08:00

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>
}