1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { Composition } from "remotion"; import { DemoVideo } from "./DemoVideo"; export const RemotionRoot = () => { return ( <Composition id="DemoVideo" component={DemoVideo} durationInFrames={600} fps={30} width={1280} height={720} /> ); };