| 1 | import { FunctionComponent } from 'react'; |
| 2 | |
| 3 | interface YoutubeRendererProps { |
| 4 | url: string; |
| 5 | } |
| 6 | |
| 7 | export const YoutubeRenderer: FunctionComponent<YoutubeRendererProps> = ({ |
| 8 | url, |
nothing calls this directly
no outgoing calls
no test coverage detected