({
name,
link,
}: {
name: string;
link?: string;
})
| 1 | import React from 'react'; |
| 2 | |
| 3 | export default function ExtendsLink({ |
| 4 | name, |
| 5 | link, |
| 6 | }: { |
| 7 | name: string; |
| 8 | link?: string; |
| 9 | }) { |
| 10 | return ( |
| 11 | <div key={name} className="extends"> |
| 12 | <i>Extends: </i> |
| 13 | <a key={name} href={link}> |
| 14 | <code> |
| 15 | ... |
| 16 | {name} |
| 17 | </code> |
| 18 | </a> |
| 19 | </div> |
| 20 | ); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…