2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-15 11:59:38 +03:00
Files
maska/packages/svelte/index.html
T
Alexander Shabunevich 89dbf2460a feat: svelte plugin
2024-04-27 20:15:16 +03:00

21 lines
442 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maska Svelte Demo</title>
</head>
<body>
<div id="app"></div>
<script type="module">
import Demo from './test/components/Demo.svelte'
new Demo({
target: document.getElementById('app')
})
</script>
</body>
</html>