Started on timeline
This commit is contained in:
parent
3d36a59d36
commit
76e57d82c5
8 changed files with 764 additions and 67 deletions
12
src/comps/timeline/timeline.svelte
Normal file
12
src/comps/timeline/timeline.svelte
Normal file
|
@ -0,0 +1,12 @@
|
|||
<script lang="ts">
|
||||
import TimelineItem from "./timelineItem.svelte";
|
||||
|
||||
</script>
|
||||
|
||||
<ul>
|
||||
{#each {length: 3} as _, i}
|
||||
<li>
|
||||
<TimelineItem title="Item {i}"/>
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
Loading…
Add table
Add a link
Reference in a new issue