mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
28 lines
696 B
TypeScript
28 lines
696 B
TypeScript
// @ts-nocheck
|
|
import React, { useEffect } from 'react';
|
|
import intl from 'react-intl-universal';
|
|
|
|
import { CurrenciesProvider } from './CurrenciesProvider';
|
|
import CurrenciesDataTable from './CurrenciesDataTable';
|
|
|
|
import withDashboardActions from '@/containers/Dashboard/withDashboardActions';
|
|
|
|
import { compose } from '@/utils';
|
|
|
|
function CurrenciesList({
|
|
// #withDashboardActions
|
|
changePreferencesPageTitle,
|
|
}) {
|
|
useEffect(() => {
|
|
changePreferencesPageTitle(intl.get('currencies'));
|
|
}, [changePreferencesPageTitle]);
|
|
|
|
return (
|
|
<CurrenciesProvider>
|
|
<CurrenciesDataTable />
|
|
</CurrenciesProvider>
|
|
);
|
|
}
|
|
|
|
export default compose(withDashboardActions)(CurrenciesList);
|