Capítulo 14 de 988
Unlike normal websites, a video has fixed dimensions. That means, it is okay to use position: "absolute"!
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<AbsoluteFill>
<Img src={staticFile('bg.png')} />
</AbsoluteFill>
<AbsoluteFill>
<h1>This text appears on top of the video!</h1>
</AbsoluteFill>
</AbsoluteFill>
);
};