I have a flask backend api to return a link of picture online, e.g.,
@app.route('/api/pic')
def pic():
......
return jsonify({"pic": "https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon@2.png"
and what I want to do is render a page with this picture with reactjs. However, I failed to integrate this with my front-end. Could someone provide a minimal working example to help me out?