8 lines
304 B
JavaScript
8 lines
304 B
JavaScript
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
// It's important to not define HelloWorld component right in this file
|
|
// because in that case it will do full page reload on change
|
|
import HelloWorld from './HelloWorld.jsx';
|
|
|
|
render(<HelloWorld />, document.getElementById('react-root'));
|