ICS React Native App
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 233 B view raw
1import { getMeOptions } from "@/generated/@tanstack/react-query.gen"; 2import { useQuery } from "@tanstack/react-query"; 3 4export const useCurrentUser = () => { 5 const { data } = useQuery(getMeOptions()); 6 7 return { user: data }; 8};