mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
import {
|
|
BE_SCHOOL_SCHOOLCLASSES_URL
|
|
} from '@/utils/Url';
|
|
|
|
export const fetchClasses = () => {
|
|
return fetch(`${BE_SCHOOL_SCHOOLCLASSES_URL}`)
|
|
.then(response => response.json())
|
|
|
|
}; |