๐Ÿ“ฆ mui / mui-x

๐Ÿ“„ index.html ยท 22 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22<!doctype html>
<html>
  <head>
    <title>vrtest</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="initial-scale=1, width=device-width" />
    <style>
      body {
        background-color: white;
      }
    </style>
    <link
      href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap"
      rel="stylesheet"
    />
  </head>
  <body>
    <div id="react-root"></div>
    <script type="module" src="./index.tsx"></script>
  </body>
</html>