mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import ShortcutBoxesSection from './ShortcutBoxesSection';
|
|
import { financialAccounting } from '@/constants/homepageOptions';
|
|
|
|
export default function FinancialAccountingSection() {
|
|
return <ShortcutBoxesSection section={financialAccounting} />;
|
|
}
|