mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 08:10:32 +00:00
7 lines
211 B
JavaScript
7 lines
211 B
JavaScript
import React from 'react';
|
|
|
|
const CurrencyDeleteAlert = React.lazy(() =>
|
|
import('../../Alerts/Currencies/CurrencyDeleteAlert'),
|
|
);
|
|
export default [{ name: 'currency-delete', component: CurrencyDeleteAlert }];
|