import { createElement, createInterpolateElement } from '@wordpress/element'; import { useI18n } from '@wordpress/react-i18n'; import React from 'react'; import ReaderFeaturedVideoBlock from 'calypso/blocks/reader-featured-video'; import './style.scss'; const GettingStartedVideo: React.FunctionComponent = () => { const { __ } = useI18n(); const video = { autoplayIframe: '', iframe: '', src: 'https://youtu.be/twGLN4lug-I', aspectRatio: 1.8, width: '100%', height: 'auto', }; return (
{ createInterpolateElement( __( 'Watch Getting started on WordPress.com while you wait' ), { strong: createElement( 'strong' ), } ) }