fixed code
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user