carbon-components-svelte/examples/vite/index.html
2021-07-29 15:23:37 -07:00

16 lines
349 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<script type="module">
import App from "/src/App.svelte";
const app = new App({ target: document.body });
export default app;
</script>
</body>
</html>