mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
9 lines
155 B
React
9 lines
155 B
React
![]() |
export default function Container({ children }) {
|
||
|
return (
|
||
|
<div>
|
||
|
{children}
|
||
|
<div className="h-[68px] overflow-clip" />
|
||
|
</div>
|
||
|
);
|
||
|
}
|