Skip to content

Commit

Permalink
adjusts from highlighter setState
Browse files Browse the repository at this point in the history
  • Loading branch information
thadeu committed Feb 11, 2019
1 parent 0b96637 commit c14428c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions content/docs/hooks-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ Os botões "+" and "-" usam a forma funcional, porque o valor atualizado é base
> Note
>
> Ao contrário do método `setState` encontrado em componentes de classe, `useState` não combina automaticamente os objetos atualizados. Você pode replicar esse comportamento por combinar a função que atualiza o objeto e o `state` anterior usando a sintaxe `object spread`
>
> ```js
>
```js
setState(prevState => {
// Object.assign também funcionaria
return {...prevState, ...updatedValues};
Expand Down

0 comments on commit c14428c

Please sign in to comment.