File size: 362 Bytes
8a4825d
 
a7a71f0
8a4825d
1c1e321
8a4825d
1c1e321
 
8a4825d
 
 
1c1e321
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import {AbsoluteFill} from 'remotion';
import VideoStream from './VideoStream';
import {TextStream} from './TextStream';
import AudioStream from './AudioStream';

export const HelloWorld = () => {
	return (
		<AbsoluteFill style={{position: 'relative', backgroundColor: 'black'}}>
			<TextStream />
			<VideoStream />
			<AudioStream />
		</AbsoluteFill>
	);
};