10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
export type GalleryItem = {
|
|
id: string;
|
|
title: string;
|
|
description: string;
|
|
image: string;
|
|
category: string;
|
|
};
|
|
|
|
export const GALLERY_ITEMS: GalleryItem[] = [];
|