acme-web
▾ app
▾ orders
page.tsx
loading.tsx
layout.tsx
▸ components
▸ lib
package.json
- 1
import { OrdersTable } from '@/components/orders-table' - 2
import { getOrders } from '@/lib/api' - 3
- 4
export default async function Page() { - 5
const orders = await getOrders() - 6
- 7
return ( - 8
<main className="orders"> - 9
<h1>Orders</h1> - 10
<OrdersTable rows={orders} /> - 11
</main> - 12
) - 13
}

