2024-11-01 04:50:35 -06:00
|
|
|
<script lang="ts">
|
2024-11-01 05:43:18 -06:00
|
|
|
var testArray = ["test","test2","test3"];
|
2024-11-01 04:50:35 -06:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<main>
|
2024-11-01 05:43:18 -06:00
|
|
|
<div class="testLinks">
|
|
|
|
{#each {length: testArray.length} as _, i}
|
|
|
|
<li>{testArray[i]}</li>
|
|
|
|
{/each}
|
|
|
|
</div>
|
2024-11-01 04:50:35 -06:00
|
|
|
</main>
|
|
|
|
<style>
|
2024-11-01 05:43:18 -06:00
|
|
|
.testLinks{
|
|
|
|
margin-top: 16rem;
|
|
|
|
margin-left: 3rem;
|
|
|
|
}
|
2024-11-01 04:50:35 -06:00
|
|
|
|
|
|
|
</style>
|