({ id }: { id: number | null })
| 2050 | } |
| 2051 | |
| 2052 | function UserInfo({ id }: { id: number | null }) { |
| 2053 | const searchQuery = useUserInfoQuery({ id, enabled: true }) |
| 2054 | |
| 2055 | return <div>UserInfo data is {JSON.stringify(searchQuery.data)} </div> |
| 2056 | } |
| 2057 | |
| 2058 | const rendered = renderWithClient(queryClient, <Page />) |
| 2059 |
nothing calls this directly
no test coverage detected
searching dependent graphs…