mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
31 lines
808 B
JavaScript
31 lines
808 B
JavaScript
import React, { useEffect } from 'react';
|
|
|
|
import { FormattedMessage as T } from 'components';
|
|
import intl from 'react-intl-universal';
|
|
|
|
import { CurrenciesProvider } from './CurrenciesProvider';
|
|
import CurrenciesDataTable from './CurrenciesDataTable';
|
|
import CurrenciesAlerts from './CurrenciesAlerts';
|
|
|
|
import withDashboardActions from 'containers/Dashboard/withDashboardActions';
|
|
|
|
import { compose } from 'utils';
|
|
|
|
function CurrenciesList({
|
|
// #withDashboardActions
|
|
changePreferencesPageTitle,
|
|
}) {
|
|
useEffect(() => {
|
|
changePreferencesPageTitle(intl.get('currencies'));
|
|
}, [changePreferencesPageTitle]);
|
|
|
|
return (
|
|
<CurrenciesProvider>
|
|
<CurrenciesDataTable />
|
|
<CurrenciesAlerts />
|
|
</CurrenciesProvider>
|
|
);
|
|
}
|
|
|
|
export default compose(withDashboardActions)(CurrenciesList);
|