Image not showing up in react

I think i dont know the way to use image path inside an object. That why image not showing up .Maybe I am wrong. Can you tell me why image not showing up? here is the screenshot. And also my Gist link is HERE

Maybe copy you codes here. it’s not easy to read from your screenshot.

I just gave my code gist link. Thanks

I just found out the way to write correct image path. 
const image1 = require('../src/img/1.jpg')
const image2 = require('../src/img/1.jpg')
const Data =[
    {
        imgsrc:image1,
            title:'this is me',
            sname:'Dark',
            link:'https://www.google.com'
    },
    {
        imgsrc:image2,
            title:'this is me',
            sname:'Dark',
            link:'https://www.google.com'
    }`enter code here`
];
1 Like