({ embedLink })
| 1 | const Introductionvideo = ({ embedLink }) => { |
| 2 | return ( |
| 3 | <div className=" w-full md:w-1/2 m-auto h-96 my-14"> |
| 4 | <iframe |
| 5 | src={embedLink} |
| 6 | title="YouTube video player" |
| 7 | className="w-full h-full rounded-xl" |
| 8 | frameBorder="0" |
| 9 | allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" |
| 10 | allowFullScreen |
| 11 | ></iframe> |
| 12 | </div> |
| 13 | ); |
| 14 | }; |
| 15 | |
| 16 | export default Introductionvideo; |
nothing calls this directly
no outgoing calls
no test coverage detected