docs: fixed typo in faq.md

This commit is contained in:
Marley
2024-09-13 09:13:37 +01:00
committed by GitHub
parent 6fce8da11a
commit 8147e6dba3

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}`
})