mirror of
https://github.com/shishantbiswas/bknd-examples.git
synced 2026-02-27 12:01:16 +00:00
5 lines
101 B
TypeScript
5 lines
101 B
TypeScript
export const useUser = () => {
|
|
const getUser = () => $fetch("/api/user");
|
|
return { getUser };
|
|
};
|