added examples, begun work on saves

This commit is contained in:
Daniel Ledda
2021-07-05 23:29:25 +02:00
parent c415641d39
commit 97cb0bc550
8 changed files with 176 additions and 89 deletions

View File

@@ -8,9 +8,17 @@
}
</script>
<List
activeItem={$activeSolution}
items={$solutions.map((soln, i) => `Solution ${i + 1}`)}
defaultText="No solutions yet..."
onClick={(i) => selectSolution(i)}
/>
<div class="container">
<List
activeItem={$activeSolution}
items={$solutions.map((soln, i) => `Solution ${i + 1}`)}
defaultText="No solutions yet..."
onClick={(i) => selectSolution(i)}
/>
</div>
<style>
.container {
height: 100%;
}
</style>