Importing all files from a folder in react
问题 I am importing all SVG's from a folder in 'icons' through an index.jsx like the following line: index.jsx: export about from './about.svg'; Here goes the Import: Button.jsx import React from 'react'; import './MenuIcon.scss'; import * as IconID from './icons'; const Button = (props) => { return ( <div className="menu-icon" > <div className={'menu-icon__icon-wrapper'}> <IconID.about /> // This works great <IconID['about'] /> // This does not work </div> </div> ); }; export default Button; Now