Skip to content

Instantly share code, notes, and snippets.

@YKalashnikov
Created April 14, 2019 20:47
Show Gist options
  • Save YKalashnikov/15edc9f4ba427b4d0ad3ba608fced3f6 to your computer and use it in GitHub Desktop.
Save YKalashnikov/15edc9f4ba427b4d0ad3ba608fced3f6 to your computer and use it in GitHub Desktop.
// 🐢 custom hook - name starts with "use" (useMedium)
useMedium(() => {
const URI = "https://some-path-api";
// 🦄 custom hook can use any of the default
// React hooks - this is NOT compulsory.
useEffect(() => {
fetch(URI)
},[])
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment