Files
bigcapital/src/containers/Homepage/AccountsReceivableSection.js
2021-09-21 17:13:53 +02:00

8 lines
268 B
JavaScript

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