import React from 'react'; import { Link } from 'react-router-dom'; import { For } from 'components'; import DashboardInsider from 'components/Dashboard/DashboardInsider'; import financialReportMenus from 'config/financialReportsMenu'; import 'style/pages/FinancialStatements/FinancialSheets.scss'; function FinancialReportsItem({ title, desc, link }) { return (
{title}

{desc}

); } function FinancialReportsSection({ sectionTitle, reports }) { return (
{sectionTitle}
); } /** * Financial reports. */ export default function FinancialReports() { return (
); }