prod.html — react Source File
Architecture documentation for prod.html, a html file in the react codebase.
Entity Profile
Source Code
<html>
<body>
<script src="https://unpkg.com/systemjs@0.19.41/dist/system.js"></script>
<div id="container"></div>
<script>
System.config({
paths: {
react: '../../../build/oss-experimental/react/umd/react.production.min.js',
'react-dom': '../../../build/oss-experimental/react-dom/umd/react-dom.production.min.js'
}
});
Promise.all([
System.import("react"),
System.import("react-dom")
]).then(function (deps) {
var React = deps[0];
var ReactDOM = deps[1];
ReactDOM.render(
React.createElement('h1', null, 'Hello World!'),
document.getElementById('container')
);
});
</script>
</body>
</html>
Source
Frequently Asked Questions
What does prod.html do?
prod.html is a source file in the react codebase, written in html.
Where is prod.html in the architecture?
prod.html is located at fixtures/packaging/systemjs/prod.html (directory: fixtures/packaging/systemjs).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free