From 3dbc6355e9056eb9021ae27ed0f9c5abba766cb2 Mon Sep 17 00:00:00 2001 From: Alex Krolick Date: Sun, 12 Nov 2017 20:04:21 -0800 Subject: [PATCH] Add context to comment syntax example --- content/docs/faq-build.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index c447eadc..8b63c912 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -17,5 +17,8 @@ No! Check out https://reactjs.org/docs/react-without-es6.html ### How can I write comments in JSX? ```jsx - {/* Comment goes here */} +
+ {/* Comment goes here */} + Hello, {name}! +
```