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

12 lines
230 B
TypeScript
Raw Normal View History

2022-06-21 03:58:57 -07:00
type ContainerProps = {
children: React.ReactNode
}
const Container = ({ children }: ContainerProps) => {
return (
2022-07-05 20:37:49 -07:00
<div className="min-h-screen bg-th-bkg-1 text-th-fgd-1 ">{children}</div>
2022-06-21 03:58:57 -07:00
)
}
export default Container