export const newUsersAPI = async (newUser) => {
await fetch('https://gorest.co.in/public/v2/users', {
method: 'POST',
headers: {'Content-Type':'application/json'},
body: JSON.stringify(newUser)
});
};
export const newUsersAPI = async (newUser) => {
await fetch('https://gorest.co.in/public/v2/users', {
method: 'POST',
headers: {'Content-Type':'application/json'},
body: JSON.stringify(newUser)
});
};