From 37e1b67df7da6a9f6e05a8df7bda242ff3b74bc8 Mon Sep 17 00:00:00 2001 From: Klaas Landsman Date: Fri, 1 May 2020 14:55:57 +0200 Subject: [PATCH] Fix markdown formatting issue (#858) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7aeb6dd..c29430d5 100644 --- a/README.md +++ b/README.md @@ -550,6 +550,7 @@ Above imports are for a convenience to utilize standard versions of batching. If ```js import { observerBatching } from "mobx-react" observerBatching(customBatchedUpdates) +``` ## FAQ @@ -581,4 +582,3 @@ Warning: setState(...): Cannot update during an existing state transition (such Usually this means that (another) component is trying to modify observables used by this components in their `constructor` or `getInitialState` methods. This violates the React Lifecycle, `componentWillMount` should be used instead if state needs to be modified before mounting. -```