mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:25:05 +00:00
It's confusing to new contributors, and me, that you're supposed to use `yarn build-combined` for almost everything but not fixtures. We should use only one build command for everything. Updated fixtures to use the folder convention of build-combined.
13 lines
415 B
HTML
13 lines
415 B
HTML
<html>
|
|
<body>
|
|
<script src="../../../build/oss-experimental/react/umd/react.development.js"></script>
|
|
<script src="../../../build/oss-experimental/react-dom/umd/react-dom.development.js"></script>
|
|
<div id="container"></div>
|
|
<script>
|
|
ReactDOM.render(
|
|
React.createElement('h1', null, 'Hello World!'),
|
|
document.getElementById('container')
|
|
);
|
|
</script>
|
|
</body>
|
|
</html> |