franchisee.js 146 B

123456
  1. import api from "src/api";
  2. export const getFranchisee = async () => {
  3. const { data } = await api.get("/franchisee");
  4. return data.payload;
  5. };