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