1
Fork 0
ytlean/frontend/index.html
2025-04-11 05:46:02 +05:00

19 lines
477 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./src/styles.css" />
</head>
<body>
<div id="app"></div>
<script type="module">
import { mount } from "svelte";
import App from "./src/App.svelte";
mount(App, { target: document.getElementById("app") });
</script>
</body>
</html>