All checks were successful
Push image to registry / build-image (push) Successful in 3m39s
17 lines
411 B
TypeScript
17 lines
411 B
TypeScript
import { clsx, type ClassValue } from "clsx";
|
|
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("/api" + route);
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`HTTP error! status: ${response.status}`);
|
|
}
|
|
|
|
return response.json();
|
|
}
|