Hello,
I am new to js and trying to get the js files working with React. I included jquery.js, plugins.min.js, and functions.js in my build, but it doesn't seem to be working. Specifically, nothing shows up with this code:
<div className="col-12 portfolio-single-image">
<div className="fslider" data-arrows="true" data-animation="slide">
<div className="flexslider">
<div className="slider-wrap">
<div className="slide"><a href={require('./guitars/guitar1.png')}><img src={require('./guitars/guitar1.png')} alt="Image" /></a></div>
</div>
</div>
</div>
</div>What am I doing wrong?
