react-code-dataset / wp-calypso /client /jetpack-cloud /sections /overview /primary /intro-video /index.tsx
| import { useTranslate } from 'i18n-calypso'; | |
| import VideoPressIframe from 'calypso/components/jetpack/videopress-iframe'; | |
| export default function IntroVideo() { | |
| const translate = useTranslate(); | |
| const videoURL = | |
| 'https://video.wordpress.com/embed/Z9piKY9s?hd=1&autoPlay=0&permalink=1&loop=0&preloadContent=metadata&muted=0&playsinline=0&controls=1&cover=1%27'; | |
| const title = translate( 'Jetpack Manage Overview' ); | |
| return <VideoPressIframe videoURL={ videoURL } title={ title } />; | |
| } | |