UNPKG

@fakel/rest-admin

Version:

An application that makes it easier to work with your API

9 lines (8 loc) 236 B
import React from 'react'; import { ImageT } from '../../stores/ImagesStore'; declare type ImageProps = { image: ImageT; handleImageClick: (image: ImageT) => void; }; export declare const Image: React.FC<ImageProps>; export {};