mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
20 lines
612 B
JavaScript
20 lines
612 B
JavaScript
import React from 'react';
|
|
import AccountsReceivableSection from './AccountsReceivableSection';
|
|
import AccountsPayableSection from './AccountsPayableSection';
|
|
import FinancialAccountingSection from './FinancialAccountingSection';
|
|
import ProductsServicesSection from './ProductsServicesSection';
|
|
import 'style/pages/HomePage/HomePage.scss';
|
|
|
|
function HomepageContent() {
|
|
return (
|
|
<div className="financial-reports">
|
|
<AccountsReceivableSection />
|
|
<AccountsPayableSection />
|
|
<FinancialAccountingSection />
|
|
<ProductsServicesSection />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default HomepageContent;
|