You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scrappe.js 267B

12345678910
  1. import { getRequest } from './index';
  2. import apiEndpoints from './apiEndpoints';
  3. export const getAllScrappes = () => {
  4. console.log("API", apiEndpoints.scrappe.getAll)
  5. const res = getRequest(apiEndpoints.scrappe.getAll);
  6. console.log("Res", res)
  7. return res
  8. }