(thumbnail: {
readonly alt: string;
readonly title?: string;
})
| 24 | readMore ? ` [Read more](${(isSingle ? '#' : '') + node.url}).` : ''; |
| 25 | |
| 26 | const getThumbnailTitle = (thumbnail: { |
| 27 | readonly alt: string; |
| 28 | readonly title?: string; |
| 29 | }): string => |
| 30 | thumbnail.title == null || thumbnail.title == 'Thumbnail' |
| 31 | ? thumbnail.alt |
| 32 | : thumbnail.title; |
| 33 | |
| 34 | const SiteSection: FunctionComponent<{ |
| 35 | readonly children?: ReactNode; |
no outgoing calls
no test coverage detected
searching dependent graphs…