Open vivek1996 opened 6 years ago
I want to implement a search box component where users can search any github usernames . Github API Url : https://api.github.com/search/users?q=${username}&per_page=10 result data structure :
https://api.github.com/search/users?q=${username}&per_page=10
{ "total_count": 10415, "incomplete_results": false, "items": [ { "login": "vivek", "id": 38139, ......... }, { ..... } ] }
I want to display the items[].login in as the dropdown list. How can I implement the search functionality ? Help me @orizens
I want to implement a search box component where users can search any github usernames . Github API Url :
https://api.github.com/search/users?q=${username}&per_page=10
result data structure :I want to display the items[].login in as the dropdown list. How can I implement the search functionality ? Help me @orizens