quorum / frontend /src /api /users.ts
nurudeen8's picture
add base frontend
dbb54bf
Raw
History Blame Contribute Delete
195 Bytes
import { apiFetch } from "./http";
import type { UserResponse } from "./types";
export async function fetchCurrentUser(): Promise<UserResponse> {
return apiFetch<UserResponse>("/users/me");
}