Skip to content

Instantly share code, notes, and snippets.

@susimsek
Created March 14, 2022 19:13
Show Gist options
  • Save susimsek/37352c944b4643837d407063345775fa to your computer and use it in GitHub Desktop.
Save susimsek/37352c944b4643837d407063345775fa to your computer and use it in GitHub Desktop.
React Hateoas Api Call
export const deleteCapability = (deleteLink) => {
return instance.delete(deleteLink);
}
export const addCapability = (capability, postLink) => {
return instance.post(postLink, capability);
}
export const updateCapability = (capability, updateLink) => {
return instance.put(updateLink, capability);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment