Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

react-dom: Update README.md #13935

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/react-dom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ npm install react react-dom
### In the browser

```js
var React = require('react');
var ReactDOM = require('react-dom');
const React = require('react');
const ReactDOM = require('react-dom');

class MyComponent extends React.Component {
render() {
Expand All @@ -28,8 +28,8 @@ ReactDOM.render(<MyComponent />, node);
### On the server

```js
var React = require('react');
var ReactDOMServer = require('react-dom/server');
const React = require('react');
const ReactDOMServer = require('react-dom/server');

class MyComponent extends React.Component {
render() {
Expand Down