From 401b97e9591ac573eaf35c7cf57e5f145276d140 Mon Sep 17 00:00:00 2001 From: Jake Hedman Date: Mon, 16 Dec 2019 07:53:23 +0100 Subject: [PATCH] Add missing whitespace (#2610) --- content/docs/concurrent-mode-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/concurrent-mode-reference.md b/content/docs/concurrent-mode-reference.md index d2c016cd4..bfc06e731 100644 --- a/content/docs/concurrent-mode-reference.md +++ b/content/docs/concurrent-mode-reference.md @@ -126,7 +126,7 @@ The `useTransition` hook returns two values in an array. **If some state update causes a component to suspend, that state update should be wrapped in a transition.** ```js -const SUSPENSE_CONFIG = {timeoutMs: 2000 }; +const SUSPENSE_CONFIG = { timeoutMs: 2000 }; function App() { const [resource, setResource] = useState(initialResource);