15 lines
733 B
HTML
15 lines
733 B
HTML
<!doctype html>
|
|
<html lang="en" style="height: 100%; width: 100%; margin: 0; padding: 0; background-color: white;">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
|
|
<title>Vite + React + TS</title>
|
|
</head>
|
|
<body style="height: 100%; width: 100%; margin: 0; padding: 0; background-color: white; overflow: hidden;">
|
|
<div id="root" style="height: 100%; width: 100%; margin: 0; padding: 0; background-color: white;"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|