DEV Community

Furkan Gulsen
Furkan Gulsen

Posted on

Mini React Tactics - ReactDOM

Typically, this is the code in the index.js document.

import ReactDOM from 'react-dom';

// ... codes

ReactDOM.render( app, document.getElementById( 'root' ) );
Enter fullscreen mode Exit fullscreen mode

But this code also can be written in this way without using ReactDOM.

import {render} from 'react-dom';

// ... codes

render(<App />,document.getElementById('root'));
Enter fullscreen mode Exit fullscreen mode

Top comments (0)