I have to fetch initial information in a component, how do I do it?
const App: Component = () => {
const resp = await fetch(...);
// show Home component after fetch is completed
}
const resp = await fetch(...);
// show Home component after fetch is completed
}
