inicio soporte informe

This commit is contained in:
2025-01-22 05:07:44 -03:00
parent 04a3deeae5
commit 0679fcef40
7 changed files with 151 additions and 15 deletions
+38
View File
@@ -0,0 +1,38 @@
<script lang="ts">
import { onMount } from "svelte";
import BarraHorizontalConTexto from "../Componentes/BarraHorizontalConTexto.svelte";
import NavBarAutocompletable from "../Componentes/NavBarAutocompletable.svelte";
import { Chart } from "chart.js";
import FChart from "../Componentes/Estadisticas/fChart.svelte";
let cdata = $state();
let myChart;
onMount(() => {
});
</script>
<NavBarAutocompletable/>
<div class="container">
<br>
<div class="row">
<BarraHorizontalConTexto text="Alquileres del ultimo año"/>
<div class="col">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>Ubicacion</th>
<th>Divisa</th>
</tr>
</thead>
</table>
</div>
<div class="col">
<FChart data={null}/>
</div>
</div>
</div>