| 1 | import React from 'react'; |
| 2 | import {Composition} from 'remotion'; |
| 3 | import {CustomerProvisioningWalkthrough} from './scenes/CustomerProvisioningWalkthrough'; |
| 4 | |
| 5 | export const RemotionRoot: React.FC = () => { |
| 6 | return ( |
| 7 | <> |
| 8 | <Composition |
| 9 | id="customer-provisioning-walkthrough" |
| 10 | component={CustomerProvisioningWalkthrough} |
| 11 | durationInFrames={240} // 8s @ 30fps |
| 12 | fps={30} |
| 13 | width={1600} |
| 14 | height={900} |
| 15 | /> |
| 16 | </> |
| 17 | ); |
| 18 | }; |