From 2a84fcbe47da5eca3ae62c74c379448336917160 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 18 Dec 2020 15:29:23 -0500 Subject: [PATCH] split line by sentances Signed-off-by: Sebastian Malton --- docs/extensions/guides/working-with-mobx.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/extensions/guides/working-with-mobx.md b/docs/extensions/guides/working-with-mobx.md index 8b42c7a54d..41ddc487a6 100644 --- a/docs/extensions/guides/working-with-mobx.md +++ b/docs/extensions/guides/working-with-mobx.md @@ -2,9 +2,10 @@ ## Introduction -Lens uses MobX on top of React's state management system. The result is a more declarative state management style, rather than React's native `setState` mechanism. +Lens uses MobX on top of React's state management system. +The result is a more declarative state management style, rather than React's native `setState` mechanism. -You can review how React handles state management [here](https://reactjs.org/docs/faq-state.html). +You can review how React handles state management [here](https://reactjs.org/docs/faq-state.html). The following is a quick overview: