Home / File/ prod.html — react Source File

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/requirejs@2.3.2/require.js"></script>
    <div id="container"></div>
    <script>
      requirejs.config({
        paths: {
          react: '../../../build/oss-experimental/react/umd/react.production.min',
          'react-dom': '../../../build/oss-experimental/react-dom/umd/react-dom.production.min'
        }
      });

      require(['react', 'react-dom'], function(React, ReactDOM) {
        ReactDOM.render(
          React.createElement('h1', null, 'Hello World!'),
          document.getElementById('container')
        );
      });
    </script>
  </body>
</html>

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/requirejs/prod.html (directory: fixtures/packaging/requirejs).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free