s02_fetch/static/dashboard.js

/* Fetch HTML and add to #display element. */
async function display() {
    const response = await fetch('http://127.0.0.1:5000/data');
    const data = await response.json();
    document.querySelector("#display").innerHTML = data.table;
}