ui/components/Gallery/Gallery.d.ts

11 lines
213 B
TypeScript

import React from 'react';
interface GalleryItem {
title: string;
src: string;
}
interface GalleryProps {
items: GalleryItem[];
}
declare const Gallery: React.FC<GalleryProps>;
export default Gallery;