From e5b197cd944921b2b7be268aa709d64ec5866643 Mon Sep 17 00:00:00 2001 From: Tyler Buchea Date: Wed, 5 Oct 2016 12:13:11 -0700 Subject: [PATCH] Update README.md to use jsx for syntax highlighting (#7884) Github now supports jsx syntax highlighting in their markdown documents. So I have updated the main README.md to use jsx instead of js. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bba0361d3..44bbf811ab 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ React is a JavaScript library for building user interfaces. We have several examples [on the website](https://facebook.github.io/react/). Here is the first one to get you started: -```js +```jsx class HelloMessage extends React.Component { render() { return
Hello {this.props.name}
;