File size: 423 Bytes
8a4825d
 
a7a71f0
d86c84c
8a4825d
d86c84c
1c1e321
8a4825d
1c1e321
 
d86c84c
8a4825d
 
 
1c1e321
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
	);
};