File size: 561 Bytes
8a4825d d86c84c 1234584 7191cf4 1c1e321 7191cf4 1c1e321 1234584 0e3029a f4883f0 0e3029a 8a4825d 1c1e321 7191cf4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import {AbsoluteFill} from 'remotion';
import VideoStream from './VideoStream';
import AudioStream from './AudioStream';
import ImageStream from './ImageStream';
import BackgroundStream from './BackGroundStream';
import TextStream from './TextStream';
import React from 'react';
const HelloWorld = React.memo(() => {
return (
<AbsoluteFill style={{position: 'relative', backgroundColor: 'black'}}>
<BackgroundStream />
<ImageStream />
<TextStream />
<VideoStream />
<AudioStream />
</AbsoluteFill>
);
});
export default HelloWorld;
|