index.html — react Source File
Architecture documentation for index.html, a html file in the react codebase.
Entity Profile
Source Code
<!doctype html>
<html>
<head>
<meta charset="utf8">
<title>React DevTools</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#panes {
display: grid;
gap: 5px;
position: relative;
overflow: hidden;
}
#divider {
position: absolute;
z-index: 10000002;
background-color: #ccc;
transition: background-color 0.2s;
}
#divider:hover,
#divider.dragging {
background-color: #aaa;
}
#divider.horizontal-divider {
width: 100%;
height: 5px;
cursor: row-resize;
}
#divider.vertical-divider {
width: 5px;
height: 100%;
cursor: col-resize;
}
#target {
height: 100%;
width: 100%;
border: none;
overflow-y: auto;
}
#devtools {
height: 100%;
width: 100%;
overflow-y: auto;
z-index: 10000001;
}
body {
height: 100vh;
width: 100vw;
display: grid;
grid-template-rows: auto 1fr;
margin: 0;
padding: 0;
// ... (156 more lines)
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 packages/react-devtools-shell/index.html (directory: packages/react-devtools-shell).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free