lucas me pidio las lineas de codigo

This commit is contained in:
2025-01-29 01:59:16 -03:00
parent c7880b03b3
commit 72f277ab6c
14 changed files with 289 additions and 44 deletions
@@ -1,6 +1,5 @@
<script lang="ts">
import { onMount } from "svelte";
import {urlG} from "../stores/urlStore";
let {currentPag,
cantpag,
@@ -10,13 +9,6 @@
cantpag: number,
queryPag: (a:number) => void} = $props();
const token = sessionStorage.getItem("token");
onMount(async () => {
});
let array = $derived.by(()=> Array.from({ length: cantpag }, (_, i) => i + 1));
</script>