svelte-playground/src/routes/index.svelte

21 lines
219 B
Svelte
Raw Normal View History

2021-08-05 17:51:59 +02:00
<div class="panel">
<h1>APPS</h1>
<ul>
<li><a href="/apps/todo">todo</a></li>
</ul>
</div>
2021-08-03 09:43:02 +02:00
2021-08-01 22:40:32 +02:00
<style>
2021-08-05 17:51:59 +02:00
.panel {
margin: 1em;
padding: 1em;
}
2021-08-05 17:51:59 +02:00
ul {
margin: 2em;
}
li {
list-style-type: circle;
}
</style>