main.js 304 B

1234567
  1. import React from 'react';
  2. import { render } from 'react-dom';
  3. // It's important to not define HelloWorld component right in this file
  4. // because in that case it will do full page reload on change
  5. import HelloWorld from './HelloWorld.jsx';
  6. render(<HelloWorld />, document.getElementById('react-root'));