svelte-playground/src/routes/index.svelte

21 lines
219 B
Svelte

<div class="panel">
<h1>APPS</h1>
<ul>
<li><a href="/apps/todo">todo</a></li>
</ul>
</div>
<style>
.panel {
margin: 1em;
padding: 1em;
}
ul {
margin: 2em;
}
li {
list-style-type: circle;
}
</style>