dcc
2024-06-13 d583372447e4958fed5b5d5004f98baf6ce433f1
1
2
3
4
5
6
7
export const openImage = (img) => {
  console.log(img)
  const image = new Image();
  image.src = img;
  const newWindow = window.open();
  newWindow.document.body.appendChild(image);
}