mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
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
|