feat(dashboard,medusa): Draft order list page (#6658)

**What**
- (dashboard) Adds list page for Draft Order domain
- (medusa) Adds the ability to filter draft orders
This commit is contained in:
Kasper Fabricius Kristensen
2024-03-11 13:22:35 +00:00
committed by GitHub
parent c51a67a421
commit 78e5ec459a
21 changed files with 489 additions and 58 deletions
@@ -109,11 +109,13 @@ const router = createBrowserRouter([
children: [
{
index: true,
lazy: () => import("../../routes/draft-orders/list"),
lazy: () =>
import("../../routes/draft-orders/draft-order-list"),
},
{
path: ":id",
lazy: () => import("../../routes/draft-orders/details"),
lazy: () =>
import("../../routes/draft-orders/draft-order-detail"),
},
],
},