From 204d3352735051d47bbecfa7ffdd14d0b5911cf6 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 13 Dec 2016 13:36:20 +0800 Subject: [PATCH] update example with correct syntax (#383) - was using `]` instead of `}` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ff846b4e..d71b3511 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ export default class Error extends React.Component { this.props.statusCode ? `An error ${this.props.statusCode} occurred on server` : 'An error occurred on client' - ]

+ }

) } }