index.html — react Source File
Architecture documentation for index.html, a html file in the react codebase.
Entity Profile
Source Code
<html>
<body>
<div id="app"></div>
<script>
performance.mark('Load React');
performance.mark('Load React+ReactDOM');
</script>
<script src="react.production.min.js"></script>
<script>
performance.measure('Load React', 'Load React');
</script>
<script>
performance.mark('Load ReactDOM');
</script>
<script src="react-dom.production.min.js"></script>
<script>
performance.measure('Load ReactDOM', 'Load ReactDOM');
performance.measure('Load React+ReactDOM', 'Load React+ReactDOM');
</script>
<script src="benchmark.js"></script>
<script>
performance.mark('Initial Render');
render();
performance.measure('Initial Render', 'Initial Render');
requestAnimationFrame(() => {
performance.mark('Update Render');
render();
performance.measure('Update Render', 'Update Render');
});
</script>
</body>
</html>
Source
Frequently Asked Questions
What does index.html do?
index.html is a source file in the react codebase, written in html.
Where is index.html in the architecture?
index.html is located at scripts/bench/benchmarks/pe-functional-components/index.html (directory: scripts/bench/benchmarks/pe-functional-components).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free