Files
dogs/node_modules/bs-recipes/recipes/webpack.react-hot-loader/app/js/main.js
ChloeChen0423 7c63f2f07b 前端代码
2025-05-12 16:42:36 +09:00

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'));