API
DirectoryFast is built on the latest NextJs features, including the App router.
Structure
folder
url
Calls
const { isLoading: isUsersLoading, data: users } = useQuery({
queryKey: [`users`],
queryFn: async () => {
const res = await fetch(`/api/users`);
return res.json();
},
});Last updated