This commit is contained in:
longdayi 2025-05-27 08:56:37 +08:00
commit 2381c47ad5
3 changed files with 10 additions and 2 deletions

View File

@ -1 +1,2 @@
export * from "./useEntity"
export * from './useEntity';
export * from './useHello';

View File

@ -0,0 +1,7 @@
import { api } from '../trpc';
export function useHello() {
return {
hello: api.hello,
};
}

View File

@ -1 +1 @@
export * from "./api"
export * from './api';