// api/Category.ts
export function getCategories() {
return axios
.get("http://comfort.loc/api/categories/list")
.then((response) => response.data);
}
// App.tsx
useEffect(() => {
let categories = getCategories();
console.log(categories.value) // ошибка Property 'value' does not exist on type 'Promise<any>'.
}, []);