Skip to content

Instantly share code, notes, and snippets.

@maxfarseer
Created May 6, 2018 05:01
Show Gist options
  • Save maxfarseer/e62355bb86ea17eb7e4723678a27a0d1 to your computer and use it in GitHub Desktop.
Save maxfarseer/e62355bb86ea17eb7e4723678a27a0d1 to your computer and use it in GitHub Desktop.
Код для статьи A Comprehensive Guide to React.js in 2018 2
import React from 'react'
import ReactDOM from 'react-dom'
class HelloWorld extends React.Component {
render() {
return (
<div>Hello World!</div>
)
}
}
ReactDOM.render(<HelloWorld />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment