I was dropping 2 assets on a canvas, and the resulting markup was like this
import {Video} from '@remotion/media';
import React from 'react';
import {staticFile, Interactive, Sequence, Img} from 'remotion';
export const ProResPizza: React.FC = () => {
return (
<>
<Sequence>
(
<Video
src={staticFile('pizza 2.mov')}
style={{
position: 'absolute',
translate: '0px -365.3px',
}}
/>
)
</Sequence>
<Img
src={staticFile(
'aurelien-lemasson-theobald-x00CzBt4Dfk-unsplash (1).jpg',
)}
style={{
position: 'absolute',
translate: '0px -1359.5px',
width: 6016,
height: 4016,
scale: 0.323,
}}
/>
</>
);
};
There should not be parentheses around Video.