Yakova's picture
Update Remotion-app/src/HelloWorld/index.jsx
0e3029a verified
raw
history blame
No virus
561 Bytes
import {AbsoluteFill} from 'remotion';
import VideoStream from './VideoStream';
import AudioStream from './AudioStream';
import ImageStream from './ImageStream';
import BackgroundStream from './BackGroundStream';
import TextStream from './TextStream';
import React from 'react';
const HelloWorld = React.memo(() => {
return (
<AbsoluteFill style={{position: 'relative', backgroundColor: 'black'}}>
<BackgroundStream />
<ImageStream />
<TextStream />
<VideoStream />
<AudioStream />
</AbsoluteFill>
);
});
export default HelloWorld;