importReactfrom'react';
// It's important to not define HelloWorld component right in this file// because in that case it will do full page reload on changeimportHelloWorldfrom'./HelloWorld.jsx';
React.render(<HelloWorld />, document.getElementById('react-root'));