7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
export const useImages = (...paths: string[]) =>
|
|
paths.map((path) => {
|
|
const img = document.createElement("img");
|
|
img.src = path;
|
|
return img;
|
|
});
|