UNPKG

ebm_customer_meal_app

Version:

*Looking for a shareable component template? Go here --> [sveltejs/component-template](https://github.com/sveltejs/component-template)*

7 lines (6 loc) 193 B
export default async (id) => { const response = await fetch(`http://localhost:5001/orderinfo/${id}`) const json = await response.json() const orders = await json.Orders return orders }