main
html 40 lines 873 Bytes
Raw
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>react-devtools-cdt-mcp fixture</title>
7 <style>
8 body {
9 font-family: -apple-system, system-ui, sans-serif;
10 margin: 2rem;
11 color: #1c1e21;
12 }
13 .app {
14 max-width: 40rem;
15 }
16 .panel {
17 border: 1px solid #ddd;
18 border-radius: 8px;
19 padding: 1rem;
20 margin: 1rem 0;
21 }
22 .panel[data-theme='dark'] {
23 background: #f5f6f7;
24 }
25 .row {
26 display: flex;
27 align-items: center;
28 gap: 0.5rem;
29 margin: 0.25rem 0;
30 }
31 button {
32 cursor: pointer;
33 }
34 </style>
35 </head>
36 <body>
37 <div id="root"></div>
38 <script src="/dist/bundle.js"></script>
39 </body>
40 </html>