added useMemo
Browse files
Remotion-app/src/HelloWorld/ImageStream.jsx
CHANGED
|
@@ -1,11 +1,6 @@
|
|
| 1 |
-
import {
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
interpolate,
|
| 5 |
-
spring,
|
| 6 |
-
useCurrentFrame,
|
| 7 |
-
} from 'remotion';
|
| 8 |
-
import React from 'react';
|
| 9 |
import {staticFile, useVideoConfig, Img, Easing, Audio} from 'remotion';
|
| 10 |
import imageSequences from './Assets/ImageSequences.json';
|
| 11 |
import {TransitionSeries, linearTiming} from '@remotion/transitions';
|
|
|
|
| 1 |
+
import {AbsoluteFill} from 'remotion';
|
| 2 |
+
|
| 3 |
+
import React, {useMemo} from 'react';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
import {staticFile, useVideoConfig, Img, Easing, Audio} from 'remotion';
|
| 5 |
import imageSequences from './Assets/ImageSequences.json';
|
| 6 |
import {TransitionSeries, linearTiming} from '@remotion/transitions';
|