complete auth pages sunc with api - complete cities and province combo box in register page

This commit is contained in:
Alihaghighattalab
2024-08-24 16:42:35 +03:30
parent ea510ee0bf
commit 9a63ef4e9e
14 changed files with 404 additions and 102 deletions
+7
View File
@@ -0,0 +1,7 @@
import { ProvinceResponse } from "../../types";
import axiosInstance from "../axios";
export const getProvincesList = () => axiosInstance.post<ProvinceResponse, ProvinceResponse>("/cross/getRouteManager", {
url: "/api/GetProvince",
db: "verity"
})