mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:04:59 +00:00
* Ran prettier over non-modified files to change them * Fixed output of failing Prettier message to show invalid files * Failing Prettier command now suggests 'yarn prettier-all'
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
require(['react', 'react-dom'], function(React, ReactDOM) {
|
|
ReactDOM.render(
|
|
React.createElement('h1', null, 'Hello World!'),
|
|
document.getElementById('container')
|
|
);
|
|
});
|