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

9 lines
279 B
TypeScript

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