()
| 1725 | } |
| 1726 | |
| 1727 | function Inner() { |
| 1728 | const state = useInfiniteQuery({ |
| 1729 | queryKey: key, |
| 1730 | queryFn, |
| 1731 | getNextPageParam: () => undefined, |
| 1732 | initialPageParam: 0, |
| 1733 | }) |
| 1734 | return ( |
| 1735 | <div> |
| 1736 | <h1>Status: {state.status}</h1> |
| 1737 | </div> |
| 1738 | ) |
| 1739 | } |
| 1740 | |
| 1741 | function Page() { |
| 1742 | const [isVisible, setIsVisible] = React.useState(true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…