import React from "react"; import { Table, Link, Accordion } from "mesh-component-library"; import "./style.css"; function PowerbiReports() { const columnsData = [ { Header: "Report Name", accessor: "reportname", highlighted: true }, { Header: "Link", accessor: "linktoreport" }, ]; const basecompRowData = [ { reportname: "Concourse to Optimus Balancing Reports", linktoreport: ( Click this link ), }, { reportname: "Optimus to IDM Balancing Reports", linktoreport: ( Click this link ), }, { reportname: "Optimus to AllBridge Balancing Reports", linktoreport: ( Click this link ), }, { reportname: "Optimus to Disbursement Balancing Reports", linktoreport: ( Click this link ), }, ]; const miscRowData = [ { reportname: "EA AB Report", linktoreport: ( Click this link ), }, { reportname: "Ivantage Daily Commissions Detail Report", linktoreport: ( Click this link ), }, { reportname: "Jetfire to Optimus Balancing Report", linktoreport: ( Click this link ), }, { reportname: "Monthly Varcomp 3-way Balancing Report", linktoreport: ( Click this link ), }, { reportname: "Optimus to IDM Queue Balancing Report", linktoreport: ( Click this link ), }, { reportname: "MSA Quarterly Bonus Report", linktoreport: ( Click this link ), }, ]; const basecompASCRowData = [ { reportname: "FPP to Gemini Balancing Reports", linktoreport: ( Click this link ), } ]; return ( <>
); } export default PowerbiReports;