Sort of working beta
This commit is contained in:
@ -4,3 +4,14 @@ import { twMerge } from "tailwind-merge"
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs))
|
||||
}
|
||||
|
||||
|
||||
export async function httpApi<T>(route: string): Promise<T> {
|
||||
let response = await fetch(import.meta.env.VITE_APP_URL + "/api" + route);
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP error! status: ${response.status}`);
|
||||
}
|
||||
|
||||
return response.json();
|
||||
}
|
||||
|
Reference in New Issue
Block a user