fixed code

This commit is contained in:
Hope87
2021-06-29 17:58:15 +03:00
parent 8e607ee21f
commit 800dc0f48c
10 changed files with 106 additions and 77 deletions

View File

@ -4,3 +4,10 @@ export const fetchProfile = async (link, index = '') => {
return data;
};
export const fetchSkills = async (link) => {
const response = await fetch(link);
let data = await response.json();
return data;
};