diff --git a/src/use-query/demo.tsx b/src/use-query/demo.tsx index 9031976b..e8fd1396 100644 --- a/src/use-query/demo.tsx +++ b/src/use-query/demo.tsx @@ -22,11 +22,13 @@ export function App() { function Demo1() { const [count, actions] = useCounter(0) const { run, data, loading, error } = useQuery(wait, { refreshDependencies: [count] }) + return ( <> -