({ children }: SectionHeaderProps)
| 3 | } |
| 4 | |
| 5 | export function SectionHeader({ children }: SectionHeaderProps) { |
| 6 | return ( |
| 7 | <div className="border-b w-full h-full p-10 md:p-14"> |
| 8 | <div className="max-w-xl mx-auto flex flex-col items-center justify-center gap-2"> |
| 9 | {children} |
| 10 | </div> |
| 11 | </div> |
| 12 | ); |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected