Mbonea's picture
testing
6167061
raw
history blame
361 Bytes
import {Composition} from 'remotion';
import {HelloWorld} from './HelloWorld';
import {DURATION} from './HelloWorld/constants';
import 'index.css';
export const RemotionRoot = () => {
return (
<>
<Composition
id="HelloWorld"
component={HelloWorld}
durationInFrames={DURATION}
fps={30}
height={1920}
width={1080}
/>
</>
);
};