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