| 1 | // Bundle entry point — passed to @remotion/bundler bundle() by the Remotion |
| 2 | // adapter's native render path. registerRoot wires the DataRollup composition |
| 3 | // into Remotion. (RFC-08 Phase 2) |
| 4 | import { registerRoot } from 'remotion'; |
| 5 | import { RemotionRoot } from './Root'; |
| 6 | |
| 7 | registerRoot(RemotionRoot); |
| 8 |