1
0
mirror of https://github.com/D4M13N-D3V/neroshitron.git synced 2025-03-14 10:05:04 +00:00

20 lines
341 B
TypeScript
Raw Normal View History

2024-05-26 02:14:59 -04:00
import { use, useState } from 'react';
import { useEffect } from 'react';
interface GalleryThumbnailProps {
}
const GalleryThumbnail = ({ }: GalleryThumbnailProps) => {
const getData = async () => {
}
useEffect(() => {
getData();
}, []);
return (
<>
</>
);
}
export default GalleryThumbnail;