Data display
Typewriter code block
A syntax-colored code panel that reveals a short snippet one character at a time like it is being typed live.
Data display
A syntax-colored code panel that reveals a short snippet one character at a time like it is being typed live.
// fetch a single item by sku
async function fetchInventory(sku) {
const res = await fetch(`/items/${sku}`);
if (!res.ok) {
throw new Error("not found");
}
const data = await res.json();
return {
...data,
cached: false,
};
}