Iterated with translations

This commit is contained in:
Henrik Larsson
2023-05-03 09:58:35 +02:00
parent 86dca04eec
commit cca3250557
54 changed files with 5406 additions and 728 deletions

View File

@@ -0,0 +1,8 @@
import { cn } from 'lib/utils'
import { FC, ReactNode } from 'react'
const HeaderRoot: FC<{ children?: ReactNode }> = ({ children }) => {
return <header className={cn('w-full bg-app')}>{children}</header>
}
export default HeaderRoot