| 1 | import {Audio as NewAudio} from '@remotion/media'; |
| 2 | |
| 3 | interface NewAudioProps { |
| 4 | src?: string; |
| 5 | } |
| 6 | |
| 7 | export const NewAudioExample: React.FC<NewAudioProps> = ({src}) => { |
| 8 | if (!src) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…