mango-v4-ui/components/shared/Container.tsx

12 lines
230 B
TypeScript

type ContainerProps = {
children: React.ReactNode
}
const Container = ({ children }: ContainerProps) => {
return (
<div className="min-h-screen bg-th-bkg-1 text-th-fgd-1 ">{children}</div>
)
}
export default Container