Mbonea's picture
removed sfx for now
0f9a373
raw
history blame
No virus
535 Bytes
import {AbsoluteFill} from 'remotion';
import VideoStream from './VideoStream';
import {TextStream} from './TextStream';
import AudioStream from './AudioStream';
import ImageStream from './ImageStream';
import SfxStream from './SfxStream';
import BackgroundStream from './BackGroundStream';
export const HelloWorld = () => {
return (
<AbsoluteFill style={{position: 'relative', backgroundColor: 'black'}}>
<BackgroundStream />
<ImageStream />
<TextStream />
<VideoStream />
<AudioStream />
</AbsoluteFill>
);
};