mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
19 lines
355 B
TypeScript
19 lines
355 B
TypeScript
import React from "react";
|
|
import ImageGallery from "../../components/ImageGallery/ImageGallery";
|
|
|
|
const Images: React.FC = () => {
|
|
|
|
const handleCopy = (id: string) => {
|
|
if (navigator.clipboard) {
|
|
navigator.clipboard.writeText(id);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<ImageGallery
|
|
handleCopy={handleCopy}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Images;
|