Skip to content

Instantly share code, notes, and snippets.

@SebastianHGonzalez
Last active May 9, 2019 16:00
Show Gist options
  • Save SebastianHGonzalez/35de95557030a72d04f64f73c2394aa9 to your computer and use it in GitHub Desktop.
Save SebastianHGonzalez/35de95557030a72d04f64f73c2394aa9 to your computer and use it in GitHub Desktop.
UseApi hook
function useApi(callback, conditions) {
const api = new Api(Config);
return useEffect(() => callback(api), conditions);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment