mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const BranchDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/Branches/BranchDeleteAlert'),
|
|
);
|
|
|
|
export default [{ name: 'branch-delete', component: BranchDeleteAlert }];
|