mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
// @ts-nocheck
|
|
import { PreferencesInvoicesBoot } from './PreferencesInvoiceFormBoot';
|
|
import PreferencesInvoiceFormPage from './PreferencesInvoiceFormPage';
|
|
|
|
/**
|
|
* items preferences.
|
|
*/
|
|
export default function PreferencesInvoices() {
|
|
return (
|
|
<PreferencesInvoicesBoot>
|
|
<PreferencesInvoiceFormPage />
|
|
</PreferencesInvoicesBoot>
|
|
);
|
|
}
|