Skip to content

Commit 93a89f1

Browse files
committed
docs: updated example in what problem does this solve
1 parent 890417b commit 93a89f1

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

docs/docs/problem-solve.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@ const Component = () => {
4040
/>
4141
);
4242
}
43-
// Finally, you can write the actual component...
43+
// Finally...
44+
return (
45+
<ComponentWithData
46+
pokemon={pokemonQuery.data}
47+
user={userQuery.data}
48+
userStats={userStatsQuery.data}
49+
/>
50+
);
4451
};
4552
```
4653

0 commit comments

Comments
 (0)