Created
March 15, 2019 11:19
-
-
Save erksch/f56b1903d0cb8b9e6ed8fc56dbdd75b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Orders.js | |
import React from 'react'; | |
import useDeletableOrders from './useDeletableOrders'; | |
function Orders() { | |
const { orders } = useDeletableOrders(); | |
return ( | |
<div> | |
<h1>Orders</h1> | |
<OrdersList orders={orders} /> | |
</div> | |
); | |
} | |
export default Orders; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment