EvalueTonSavoir/client/src/pages/Admin/Images.tsx

20 lines
355 B
TypeScript
Raw Normal View History

2025-03-28 20:55:14 -04:00
import React from "react";
import ImageGallery from "../../components/ImageGallery/ImageGallery";
2025-03-16 00:52:22 -04:00
const Images: React.FC = () => {
2025-03-28 20:55:14 -04:00
const handleCopy = (id: string) => {
if (navigator.clipboard) {
navigator.clipboard.writeText(id);
2025-03-16 00:52:22 -04:00
}
};
return (
2025-03-28 20:55:14 -04:00
<ImageGallery
handleCopy={handleCopy}
/>
2025-03-16 00:52:22 -04:00
);
};
export default Images;