11 lines
213 B
TypeScript
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;
|