Youtube Player Component

Usage#

To use the video componentyou have to import it and use it.

Code#

import React from "react";
import { YoutubePlayer } from "reactjs-media";
const App = () => {
return (
<div>
<YoutubePlayer
src="https://youtu.be/UZCO5k1Nu70" // Reqiured
allowFullScreen
height={500}
width={600}
/>
</div>
);
};
export default App;

Output#

To find more about props check the YoutubePlayer Props section.