npm i react-youtube-embed
App.jsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
// App.js import React from 'react'; import YouTube from 'react-youtube-embed'; const App = () => { return ( <div style={{ width: '800px',height:'800px', margin: 'auto', padding: '20px' }}> <h2>React YouTube Embed Example</h2> <YouTube id="A71aqufiNtQ" /> </div> ); }; export default App; |