diff --git a/src/content/7/en/part7b.md b/src/content/7/en/part7b.md
index f1271d9787..baf01590b2 100644
--- a/src/content/7/en/part7b.md
+++ b/src/content/7/en/part7b.md
@@ -208,18 +208,36 @@ The hook can be used in the following way:
```js
const App = () => {
const name = useField('text')
- // ...
+ const born = useField('date')
+ const height = useField('number')
return (
+
+ {name.value} {born.value} {height.value}
+
)
}
diff --git a/src/content/7/fi/osa7b.md b/src/content/7/fi/osa7b.md
index 5ad0f097ea..d423d08141 100644
--- a/src/content/7/fi/osa7b.md
+++ b/src/content/7/fi/osa7b.md
@@ -213,18 +213,36 @@ Hookia voidaan käyttää seuraavasti:
```js
const App = () => {
const name = useField('text')
- // ...
+ const born = useField('date')
+ const height = useField('number')
return (
+
+ {name.value} {born.value} {height.value}
+
)
}