Skip to content
Advertisement

How to pass local video file as a prop to ReactPlayer

I’m using react-player component for this.

I have file 1 where I’m storing some data as an array, including a local video.

JavaScript

File 2 takes the array and maps each item to a React component called ProjectDetail.

JavaScript

Finally, this is file 3 which contains ProjectDetail. It takes the array item as props. videoUrl is passed to the ReactPlayer component.

JavaScript

title, desc and sourceUrl are working fine, but I don’t understand videoUrl doesn’t. I tried looking up an answer but was unsuccessful.

If I import videoSample in file 3 directly, it works fine, but not when passed as a prop from outside. What am I missing?

Advertisement

Answer

Found my mistake. All I needed to do was removing the curly brackets.

videoUrl: { videoSample } -> videoUrl: videoSample

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement