I\'m working on a React application and using Webpack & Typescript. I would like to use an image in one of the &
&
You need to require the image and then use that variable as the source, like so:
require
// At the top of the file, with all other imports/requires const imageSrc = require('/assets/logo-large.png') ... render() { return }