Capítulo 155 de 988
<Still>A <Still /> is a single-frame <Composition />. It is a convenient way to define a composition that renders an image rather than a video.
// @allowUmdGlobalAccess
// @filename: ./MyComp.tsx
export const MyComp = () => <></>;
// @filename: index.tsx
export const MyVideo = () => {
return (
<>
<Composition id="my-video" component={MyComp} width={1080} height={1080} fps={30} durationInFrames={3 * 30} />
<Still id="my-image" component={MyComp} width={1080} height={1080} />
</>
);
};
<Still> from the official docs.<Still>.<Still>.<Still>.