From 53a600087ba115f6d28830ef6d63c80b093bfe6a Mon Sep 17 00:00:00 2001 From: Zeb DeOs Date: Fri, 2 Feb 2018 18:53:53 -0800 Subject: [PATCH] Add semicolon for example code style consistency (#575) --- 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 9b2deb38..5680ee21 100644 --- a/content/docs/conditional-rendering.md +++ b/content/docs/conditional-rendering.md @@ -209,7 +209,7 @@ function WarningBanner(props) { class Page extends React.Component { constructor(props) { super(props); - this.state = {showWarning: true} + this.state = {showWarning: true}; this.handleToggleClick = this.handleToggleClick.bind(this); }