Spaces:
Running
Running
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> | |
`; | |