"use client"; import { useState } from "react"; import styles from "./Page.module.css"; interface reportes { Servicio: "Plotter"; Total: "$1440.00"; } function PorRecibos() { const [reportes, SetQuitarSanciones] = useState([]); return (
{reportes.map((reporte, index) => ( ))}
Servicio Total
{reporte.Servicio} {reporte.Total}
); } export default PorRecibos;