9 lines
155 B
React
Raw Normal View History

2023-08-01 13:05:17 +03:00
export default function Container({ children }) {
return (
<div>
{children}
<div className="h-[68px] overflow-clip" />
</div>
);
}