mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
// @ts-nocheck
|
|
import { PreferencesEstimatesBoot } from './PreferencesEstimatesFormBoot';
|
|
import { PreferencesEstimatesFormPage } from './PreferencesEstimatesFormPage';
|
|
|
|
/**
|
|
* Estimates preferences.
|
|
*/
|
|
export function PreferencesEstimates() {
|
|
return (
|
|
<PreferencesEstimatesBoot>
|
|
<PreferencesEstimatesFormPage />
|
|
</PreferencesEstimatesBoot>
|
|
);
|
|
}
|