JSFiddle - React, Tailwind, and code Playground
HTML
<div class="televisor">
<div class="video">это будет видео</div>
</div>
CSS
.televisor{ /*это телевизор*/
width:300px;
height:300px;
background:#ccc;/*сюда можно вставить изображение самого телевизора*/
margin: 50px auto;
padding:10px;
}
.video{
height:100%;
background:#fff;
}