print base

This commit is contained in:
hamid zarghami
2026-02-02 09:09:36 +03:30
parent 3d53661c9a
commit 6383cbb975
6 changed files with 64 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
import axios from "@/config/axios";
export const getSections = async () => {
const { data } = await axios.get(`/admin/section`);
return data;
};