# react/no-render-return-value
📝 Disallow usage of the return value of ReactDOM.render.
💼 This rule is enabled in the ☑️ `recommended` [config](https://github.com/jsx-eslint/eslint-plugin-react/#shareable-configs).
> `ReactDOM.render()` currently returns a reference to the root `ReactComponent` instance. However, using this return value is legacy and should be avoided because future versions of React may render components asynchronously in some cases. If you need a reference to the root `ReactComponent` instance, the preferred solution is to attach a [callback ref](https://legacy.reactjs.org/docs/refs-and-the-dom.html#callback-refs) to the root element.
Source: [ReactDOM documentation](https://legacy.reactjs.org/docs/react-dom.html#render)
## Rule Details
This rule will warn you if you try to use the `ReactDOM.render()` return value.
Examples of **incorrect** code for this rule:
```jsx
const inst = ReactDOM.render(, document.body);
doSomethingWithInst(inst);
```
Examples of **correct** code for this rule:
```jsx
ReactDOM.render(, document.body);
ReactDOM.render(, document.body, doSomethingWithInst);
```