I want to import all images from a folder and want to use as needed. But can't do it by following methods. What I am doing? this:
import * as imageSrc from '../img';
let imageUrl = [];
    imageSrc.map(
    imageUrl.push(img) 
    )) 
I am getting this error in console.log
index.js:1452 ./src/components/Main.jsx
Module not found: Can't resolve '../img' in 'G:\Projects\Personal\Portfolios\Portfolio_Main\React_portfolio\portfolio\src\components'
Folder Structure:
src>
  components>
    Main.jsx
  img>
    [all image files]