mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 23:30:32 +00:00
11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const DeleteBrandingTemplateAlert = React.lazy(
|
|
() => import('./DeleteBrandingTemplateAlert'),
|
|
);
|
|
|
|
export const BrandingTemplatesAlerts = [
|
|
{ name: 'branding-template-delete', component: DeleteBrandingTemplateAlert },
|
|
];
|