File size: 602 Bytes
ece5841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <link rel="icon" type="image/png" href="/favicon.ico" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>ChessHub</title>
        <style>
            body {
                margin: 0;
                width: 100%;
                min-width: 420px;
            }
        </style>
    </head>
    <body>
        <div id="root"></div>
        <div
            id="main-loader"
        ></div>
        <script type="module" src="/src/main.tsx"></script>
    </body>
</html>