7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
|
export const fetchProfile = async (link, index = '') => {
|
||
|
const response = await fetch(`${link}/${index}`);
|
||
|
let data = await response.json();
|
||
|
|
||
|
return data;
|
||
|
};
|