mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
15 lines
341 B
JavaScript
15 lines
341 B
JavaScript
import React from 'react';
|
|
import AccountantFormPage from './AccountantFormPage';
|
|
import { AccountantFormProvider } from './AccountantFormProvider';
|
|
|
|
/**
|
|
* Accountant preferences.
|
|
*/
|
|
export default function AccountantPreferences() {
|
|
return (
|
|
<AccountantFormProvider>
|
|
<AccountantFormPage />
|
|
</AccountantFormProvider>
|
|
);
|
|
}
|