mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
15 lines
323 B
TypeScript
15 lines
323 B
TypeScript
import type React from "react";
|
|
import { ScreenshotScene } from "./ScreenshotScene";
|
|
|
|
export const SingleToolScene: React.FC = () => {
|
|
return (
|
|
<ScreenshotScene
|
|
screenshot="resize-tool.png"
|
|
caption="Upload. Configure. Process."
|
|
captionFrame={120}
|
|
zoomTo={1.08}
|
|
panY={-15}
|
|
/>
|
|
);
|
|
};
|