mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const TaxRateDeleteAlert = React.lazy(() => import('./TaxRateDeleteAlert'));
|
|
|
|
/**
|
|
* Project alerts.
|
|
*/
|
|
export default [
|
|
{ name: 'tax-rate-delete', component: TaxRateDeleteAlert },
|
|
];
|