refactor widget

This commit is contained in:
Ben Phelps 2023-08-01 13:05:17 +03:00
parent 3fa72e48cc
commit b77909a360
18 changed files with 510 additions and 529 deletions

View file

@ -0,0 +1,8 @@
export default function Container({ children }) {
return (
<div>
{children}
<div className="h-[68px] overflow-clip" />
</div>
);
}