| 21 | } |
| 22 | |
| 23 | interface SectionProps { |
| 24 | children: React.ReactNode; |
| 25 | collapsible?: boolean; |
| 26 | defaultOpen?: boolean; |
| 27 | sectionKey?: string; |
| 28 | className?: string; |
| 29 | showTopBorder?: boolean; |
| 30 | showBottomBorder?: boolean; |
| 31 | } |
| 32 | |
| 33 | export function Section({ |
| 34 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected