Merge pull request #7 from marleypowell/patch-1

docs: fixed typo in faq.md
This commit is contained in:
Aylur
2024-09-13 15:46:29 +02:00
committed by GitHub
+1 -1
View File
@@ -149,7 +149,7 @@ Then it can be used with `bind`.
```tsx
function MyWidget() {
const myvar = new MyVariableValue()
const myvar = new MyVariable()
const label = bind(myvar).as(({ string, number }) => {
return `${string} ${number}`
})