mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
backend: - Change index POST requests to GET requests frontend: - Fetch releases from api endpoint on index page. - Add filters on main page. - Remove tailwindcss
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
export const getData = async (url) => {
|
|
try {
|
|
const response = await fetch(url);
|
|
if (response.status !== 200) {
|
|
throw new Error("Ошибка получения данных");
|
|
}
|
|
return await response.json();
|
|
} catch (error) {
|
|
return error;
|
|
}
|
|
};
|