mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
19 lines
453 B
JavaScript
19 lines
453 B
JavaScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import { DashboardInsider } from 'components';
|
|
import { CLASSES } from 'common/classes';
|
|
|
|
import 'style/pages/FinancialStatements/FinancialReportPage.scss';
|
|
|
|
/**
|
|
* Financial report page.
|
|
*/
|
|
export default function FinancialReportPage(props) {
|
|
return (
|
|
<DashboardInsider
|
|
{...props}
|
|
className={classNames(CLASSES.FINANCIAL_REPORT_INSIDER, props.className)}
|
|
/>
|
|
);
|
|
}
|