feat: update header menu

This commit is contained in:
swve 2023-06-13 23:59:26 +02:00
parent d0d034eaad
commit dcfc68f6d1
5 changed files with 111 additions and 130 deletions

View file

@ -0,0 +1,13 @@
"use client";
function ClientComponentSkeleton({
children,
}: {
children: React.ReactNode
}) {
return (
<div>{children}</div>
)
}
export default ClientComponentSkeleton