/
rxeev
/
react_schools
Обзор
Документация
Войти
/
rxeev
/
react_schools
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/api/regionsApi.js
10 строк
271 B
Rxeeb
first commit
09 окт 2025, 20:47
09 окт 2025, 20:47
0a19554
Код
Авторство
О чём код?
import apiClient from './axios' export const regionsApi = { async getRegions() { const response = await apiClient.get('/regions') // Сортировка по алфавиту return response.data.sort((a, b) => a.name.localeCompare(b.name, 'ru')) }, }