From 4fbd330a17cf388c82bfc1dbfe1122593cbdc1b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Fri, 26 May 2023 19:09:13 -0600 Subject: Using Axios to send HTTP requests. Defining API and method GET to retrieve all to dos. --- src/api/axios_methods.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/api/axios_methods.js (limited to 'src/api/axios_methods.js') diff --git a/src/api/axios_methods.js b/src/api/axios_methods.js new file mode 100644 index 0000000..2e2329f --- /dev/null +++ b/src/api/axios_methods.js @@ -0,0 +1,15 @@ +import api from "./axios_config"; + +// findAll() on Back End. +export function get_todos_function(hook) { + // Get a list of all to dos. + // GET "/v1/todos" + return async () => { + try { + const response = await api.get("/v1/todos"); + hook(response.data); + } catch (err) { + console.log(err); + } + }; +} -- cgit v1.2.3