Skip to content

Instantly share code, notes, and snippets.

@erksch
Created March 15, 2019 11:08
Show Gist options
  • Save erksch/c539647d02c49362200bdd08a5dd6c97 to your computer and use it in GitHub Desktop.
Save erksch/c539647d02c49362200bdd08a5dd6c97 to your computer and use it in GitHub Desktop.
import { useState, useEffect } from 'react';
import OrderService from './OrderService';
function useOrders() {
const [orders, setOrders] = useState([]);
async function fetchOrders() {
const orders = await OrderService.get();
setOrders(orders);
}
useEffect(() => {
fetchOrders();
}, []);
return { orders };
}
export default useOrders;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment