Files
bigcapital/packages/webapp/src/containers/Homepage/FinancialAccountingSection.tsx
2023-02-03 01:02:31 +02:00

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} />;
}