# There's createResource to handle asynchronous reactivity. It's basically const [data] = createResource(() => fetch(url).then(response => response.json())) Then, data is an Accessor for the resource.
# OK, so the question is what you want the front-end to do exactly? Fetch the data from the API and then what?