DefinitelyTyped/types/react-medium-image-zoom/react-medium-image-zoom-tests.tsx
James Bellamy ea24e64a67 Adding type definitions for react-medium-image-zoom (#33911)
* Added type definitions for react-medium-image-zoom

* fixes for react-medium-image-zoom

* fixes for react-medium-image-zoom
2019-03-15 10:57:58 -07:00

24 lines
741 B
TypeScript

import * as React from "react";
import ImageZoom from "react-medium-image-zoom";
const component: React.FC = () => {
return (
<div>
<ImageZoom
image={{
src: "https://raw.githubusercontent.com/rpearce/react-medium-image-zoom/master/docs/bridge.jpg",
alt: "Golden Gate Bridge",
className: "img"
}}
zoomImage={{
src: "https://raw.githubusercontent.com/rpearce/react-medium-image-zoom/master/docs/bridge-big.jpg",
alt: "Golden Gate Bridge",
className: "img--zoomed"
}}
/>
</div>
);
};
export default component;