Mbonea's picture
dynamic assests and cutscences -- not tested
8a4825d
raw
history blame
No virus
342 Bytes
import {Composition} from 'remotion';
import {HelloWorld} from './HelloWorld';
import {DURATION} from './HelloWorld/constants';
export const RemotionRoot = () => {
return (
<>
<Composition
id="HelloWorld"
component={HelloWorld}
durationInFrames={DURATION}
fps={30}
height={1920}
width={1080}
/>
</>
);
};