// @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 ( ); } export default compose(withDashboardActions)(CurrenciesList);