mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 09:51:36 +00:00
15 lines
355 B
HTML
15 lines
355 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 "../css/all.css";
|
|
import App from "./App.test.svelte";
|
|
|
|
const app = new App({ target: document.body });
|
|
</script>
|
|
</body>
|
|
</html>
|