Skip to content

Commit

Permalink
fix code style in concurrent-mode-reference.md (reactjs#2553)
Browse files Browse the repository at this point in the history
  • Loading branch information
matsakyan authored and lex111 committed Nov 11, 2019
1 parent 0be8b72 commit bbea522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/concurrent-mode-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ A good example of this is a text input.
```js
function App() {
const [text, setText] = useState("hello");
const deferredText = useDeferredValue(text, {timeoutMs: 2000 });
const deferredText = useDeferredValue(text, { timeoutMs: 2000 });

return (
<div className="App">
Expand Down

0 comments on commit bbea522

Please sign in to comment.