Skip to content

Instantly share code, notes, and snippets.

@yaralahruthik
Created December 7, 2021 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaralahruthik/1d09c7dd27d4b525a6152daee997c6f6 to your computer and use it in GitHub Desktop.
Save yaralahruthik/1d09c7dd27d4b525a6152daee997c6f6 to your computer and use it in GitHub Desktop.
export const getTodos = () => {
return fetch('https://jsonplaceholder.typicode.com/todos').then((res) =>
res.json()
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment