Mbonea's picture
Added Images
d86c84c
raw
history blame
423 Bytes
import {AbsoluteFill} from 'remotion';
import VideoStream from './VideoStream';
import {TextStream} from './TextStream';
import AudioStream from './AudioStream';
import ImageStream from './ImageStream';
export const HelloWorld = () => {
return (
<AbsoluteFill style={{position: 'relative', backgroundColor: 'black'}}>
<ImageStream />
<TextStream />
<VideoStream />
<AudioStream />
</AbsoluteFill>
);
};