Skip to content

Commit 7200653

Browse files
authored
Update conditional-rendering.md to fix formatting (#4493)
A slight inconsistency in the formatting used throughout for `{` `}`.
1 parent 9b5505e commit 7200653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/conditional-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ render() {
159159
const count = 0;
160160
return (
161161
<div>
162-
{ count && <h1>Messages: {count}</h1>}
162+
{count && <h1>Messages: {count}</h1>}
163163
</div>
164164
);
165165
}

0 commit comments

Comments
 (0)