использовать базовый источник изображения
constructor(props) {
super(props);
this.state = {
imgSrc: '',
};
}
componentDidMount() {
fetch('http://localhost:8181/images/appliance-OTHER.svg', {
method: "GET",
headers: { Authorization: 'Bearer eyJhbGciOiJIU' }
}).then((response) => {
const data = `data:${response.headers['content-type']};base64,${new Buffer(response.data).toString('base64')}`;
this.setState({ imgSrc: data });
});
}
render() {
const { imgSrc } = this.state;
return (
<img src={imgSrc} alt="love is gone" />
)
}