+ {isLoading &&
Loading...}
+ {draft_orders && !draft_orders.length && (
+
No Draft Orders
+ )}
+ {draft_orders && draft_orders.length > 0 && (
+
+ {draft_orders.map((order) => (
+ - {order.display_id}
+ ))}
+
+ )}
+
+ )
+}
+
+export default DraftOrders
+```
+
+