add usersList table

This commit is contained in:
smanylov
2026-01-19 16:34:29 +07:00
parent fe8b6e42cc
commit 3c6dab7971
16 changed files with 2161 additions and 51 deletions
+14
View File
@@ -0,0 +1,14 @@
import { QueryClient } from '@tanstack/react-query';
export async function prefetchLayoutQueries(queryClient: QueryClient) {
await Promise.all([
queryClient.prefetchQuery({
queryKey: ['userData'],
queryFn: () => {
return {
test: 'testFetchUserData'
}
}
})
]);
}