svelte-playground/src/routes/index.svelte

22 lines
282 B
Svelte
Raw Normal View History

2021-08-03 09:43:02 +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>
.panel {
margin: 1em;
padding: 1em;
}
ul {
margin: 2em;
}
li {
list-style-type:circle;
2021-08-01 22:40:32 +02:00
}
</style>