Browse Source

Break down code into separate lines

main
dan 3 years ago
committed by GitHub
parent
commit
9e29400997
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      content/docs/hello-world.md

5
content/docs/hello-world.md

@ -9,9 +9,8 @@ next: introducing-jsx.html
The smallest React example looks like this: The smallest React example looks like this:
```jsx ```jsx
ReactDOM const root = ReactDOM.createRoot(document.getElementById('root'));
.createRoot(document.getElementById('root')) root.render(<h1>Hello, world!</h1>);
.render(<h1>Hello, world!</h1>);
``` ```
It displays a heading saying "Hello, world!" on the page. It displays a heading saying "Hello, world!" on the page.

Loading…
Cancel
Save