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

9 lines
288 B
TypeScript

// @ts-nocheck
import React from 'react';
import ShortcutBoxesSection from './ShortcutBoxesSection';
import { accountsReceivable } from '@/constants/homepageOptions';
export default function AccountsReceivableSection() {
return <ShortcutBoxesSection section={accountsReceivable} />;
}