You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- //src\components\DelayReport\DelayReport.tsx
- "use client";
- import * as React from "react";
- import "../../../app/global.css";
- import { Suspense } from "react";
- import FinancialStatusReportGen from "@/components/Report/FinancialStatusReportGen";
-
- const FinancialStatusReport: React.FC = () => {
-
- return (
- <Suspense fallback={<FinancialStatusReportGen.Loading />}>
- <FinancialStatusReportGen />
- </Suspense>
- );
- };
-
- export default FinancialStatusReport;
|