Not allowed to actually do it
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<script lang="ts">
|
||||
import RouteRow from "$lib/components/RouteRow.svelte";
|
||||
|
||||
export let data;
|
||||
|
||||
let reversed = false;
|
||||
|
||||
$: proceccedFeatures = (() => {
|
||||
const list = reversed ? [...data.route].reverse() : [...data.route];
|
||||
})
|
||||
</script>
|
||||
Reference in New Issue
Block a user