| 1 | import { cn } from "~/utils/css" |
| 2 | |
| 3 | interface HeaderProps { |
| 4 | children: React.ReactNode |
| 5 | className?: string |
| 6 | } |
| 7 | |
| 8 | export const Header = ({ children, className }: HeaderProps) => { |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…