File size: 542 Bytes
ea6c2a8
 
 
 
 
 
 
 
 
 
 
 
 
a582fa0
ea6c2a8
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export const defaultHTML = `<!DOCTYPE html>
<html>
  <head>
    <title>My app</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta charset="utf-8">
    <style>
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100dvh;
        font-family: "Arial", sans-serif;
        text-align: center;
      }
    </style>
  </head>
  <body>
    <h1>
      Start editing to see some magic happen!
    </h1>
    <script></script>
  </body>
</html>
`;