How to preload images in React.js? I have dropdown select component which works like menu , but i have to preload image icons for items,because sometimes they are not visib
This works:
import im1 from 'img/im1.png' import im2 from 'img/im2.png' import im3 from 'img/im3.png' componentDidMount() { imageList = [im1, im2, im3] imageList.forEach((image) => { new Image().src = image }); }