Files
bigcapital/client/src/containers/Homepage/AccountsReceivableSection.js
2021-02-23 17:41:05 +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} />;
}