(props: Props)
| 8 | } |
| 9 | |
| 10 | export default function Subhead(props: Props) { |
| 11 | const { heading, renderHeadingDetail } = props |
| 12 | |
| 13 | useDocumentTitle(`${heading} | Digraph`) |
| 14 | |
| 15 | return ( |
| 16 | <div className="Subhead gutter"> |
| 17 | <div className="Subhead-heading col-lg-12 col-12"> |
| 18 | <div>{ heading }</div> |
| 19 | { renderHeadingDetail && renderHeadingDetail() } |
| 20 | </div> |
| 21 | </div> |
| 22 | ) |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected