({ children, onClick }: Props)
| 7 | } |
| 8 | |
| 9 | export default function PinnedSection({ children, onClick }: Props) { |
| 10 | return ( |
| 11 | <div className={styles.section} onClick={onClick}> |
| 12 | {children} |
| 13 | </div> |
| 14 | ); |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected