7 lines
253 B
JavaScript
7 lines
253 B
JavaScript
|
import { serverPath } from "../variables.js";
|
||
|
|
||
|
export async function fetchAllCategories() {
|
||
|
// По дефолту метод GET (получение данных)
|
||
|
const response = await fetch(`${serverPath}/categories`);
|
||
|
return response.json();
|
||
|
}
|