We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e59e72 commit 56f6bf8Copy full SHA for 56f6bf8
src/routes/solid-start/building-your-application/data-loading.mdx
@@ -15,7 +15,7 @@ It takes an async function and returns a [signal](/reference/basic-reactivity/cr
15
```tsx {6-9}
16
import { For, createResource } from "solid-js";
17
18
-type Users = { name: string; house: string };
+type User = { name: string; house: string };
19
20
export default function Page() {
21
const [users] = createResource(async () => {
0 commit comments