Mbonea's picture
added sfx
b2b53ae
raw
history blame
477 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';
export const HelloWorld = () => {
return (
<AbsoluteFill style={{position: 'relative', backgroundColor: 'black'}}>
<SfxStream />
<ImageStream />
<TextStream />
<VideoStream />
<AudioStream />
</AbsoluteFill>
);
};