neroshitron/components/ui/example.tsx

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;