Home / File/ dev.html — react Source File

dev.html — react Source File

Architecture documentation for dev.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.development.js',
          'react-dom': '../../../build/oss-experimental/react-dom/umd/react-dom.development.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>

Frequently Asked Questions

What does dev.html do?
dev.html is a source file in the react codebase, written in html.
Where is dev.html in the architecture?
dev.html is located at fixtures/packaging/systemjs/dev.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