Hi I am trying to map a set of images from this.state to image tags, using react.js. I am running into the error: "cannot find module '.'"
Here is the error: Error: Cannot find module "." webpackMissingModule src/components/thumbnails.js:26
23 | }
24 | render(){
25 | const thumbnailimg = this.state.thumbnail_vids.map((img,i)=>{
> 26 | let image = require(img);
27 | return(<img key={i} className="thumbimg" src={image}/>)
28 | })
29 | return(
Here is the full code: thumbnails.js
import React, { Component } from "react";
import { render } from "react-dom";
class Thumbnails extends Component {
constructor(props){
super(props);
this.state = {
thumbnail_vids: ['../thumbnails/asthma_1.jpeg','../thumbnails/asthma_2.jpeg','../thumbnails/asthma_3.jpeg']
}
}
render(){
const thumbnailimg = this.state.thumbnail_vids.map((img,i)=>{
let image = require(img);
return(<img key={i} className="thumbimg" src={image}/>)
})
return(
<div>
<span className="thumbtable">
<img src={require("../thumbnails/asthma_1.jpeg")} />
{thumbnailimg}
</span>
</div>
)
}
}
export default Thumbnails;
and here is the project structure for my src folder (though I have abstracted anything unrelated to the question at hand):
├── App.css
├── App.js
├── App.test.js
├── components
│ ├── header.js
│ ├── likebutton.js
│ ├── thumbnails.js
│ └── topicselect.js
├── index.css
├── index.js
├── registerServiceWorker.js
├── thumbnails
│ ├── asthma_1.jpeg
│ ├── asthma_2.jpeg
│ ├── asthma_3.jpeg
│ ├── copd_1.jpeg
│ ├── copd_2.jpeg
│ ├── copd_3.jpeg
│ ├── diabetes_1.jpeg
│ ├── diabetes_2.jpeg
│ ├── diabetes_3.jpeg
│ ├── emphysema_1.jpeg
│ ├── emphysema_2.jpeg
│ ├── emphysema_3.jpeg
│ ├── hyperlipidemia_1.jpeg
│ ├── hyperlipidemia_2.jpeg
│ ├── hyperlipidemia_3.jpeg
│ ├── hypertension_1.jpeg
│ ├── hypertension_2.jpeg
│ ├── hypertension_3.jpeg
│ ├── narcolepsy_1.jpeg
│ ├── narcolepsy_2.jpeg
│ ├── narcolepsy_3.jpeg
│ ├── pneumonia_1.jpeg
│ ├── pneumonia_2.jpeg
│ └── pneumonia_3.jpeg
I am using create-react-app