Mbonea's picture
intial commit
1c1e321
raw
history blame
No virus
382 Bytes
import {Composition} from 'remotion';
import {HelloWorld} from './HelloWorld';
export const RemotionRoot = () => {
return (
<>
<Composition
id="HelloWorld"
component={HelloWorld}
durationInFrames={15000}
fps={30}
height={1920}
width={1080}
defaultProps={{
titleText: 'Welcome to Remotion',
titleColor: 'black',
}}
/>
</>
);
};