From 7200653b4492a7fa5217a20f6eaa36b4689f9005 Mon Sep 17 00:00:00 2001 From: James Herdman Date: Sat, 26 Mar 2022 13:24:48 -0400 Subject: [PATCH] Update conditional-rendering.md to fix formatting (#4493) A slight inconsistency in the formatting used throughout for `{` `}`. --- content/docs/conditional-rendering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/conditional-rendering.md b/content/docs/conditional-rendering.md index 8c85ee84..8a6763d7 100644 --- a/content/docs/conditional-rendering.md +++ b/content/docs/conditional-rendering.md @@ -159,7 +159,7 @@ render() { const count = 0; return (
- { count &&

Messages: {count}

} + {count &&

Messages: {count}

}
); }