Skip to content

Instantly share code, notes, and snippets.

@roeib
Created May 22, 2019 12:01
Show Gist options
  • Save roeib/02b0cef139736c621689ab300b135ef2 to your computer and use it in GitHub Desktop.
Save roeib/02b0cef139736c621689ab300b135ef2 to your computer and use it in GitHub Desktop.
import React, { useState } from 'react';
function GetGitHubUsers() {
const [users, setUsers] = useState([]);
useEffect(() => {
fetch('https://api.github.com/users')
.then(response => response.json())
.then(data => {
setUsers(data); // set users in state
});
}, []); // empty array because we only run once
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment