fetch()

in src/components/Contributors.tsx [9:13]


            fetch(`https://api.github.com/repos/${repo}/contributors?page=1&per_page=10000`).then(function (response) {
                return response.json();
            }).then((res) => {
                setContributers(res);
            });