mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
20 lines
341 B
TypeScript
20 lines
341 B
TypeScript
import { use, useState } from 'react';
|
|
import { useEffect } from 'react';
|
|
|
|
interface GalleryThumbnailProps {
|
|
}
|
|
|
|
const GalleryThumbnail = ({ }: GalleryThumbnailProps) => {
|
|
const getData = async () => {
|
|
}
|
|
useEffect(() => {
|
|
getData();
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default GalleryThumbnail; |