({
children,
title = 'Detailed Explanation'
})
| 1 | import React from 'react' |
| 2 | |
| 3 | export const DetailedExplanation = ({ |
| 4 | children, |
| 5 | title = 'Detailed Explanation' |
| 6 | }) => { |
| 7 | return ( |
| 8 | <details className="detailed-explanation"> |
| 9 | <summary> |
| 10 | <h4>{title}</h4> |
| 11 | </summary> |
| 12 | {children} |
| 13 | </details> |
| 14 | ) |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected