mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-24 00:29:49 +00:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const RoleDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/Roles/RoleDeleteAlert'),
|
|
);
|
|
|
|
/**
|
|
* Roles alerts
|
|
*/
|
|
export default [{ name: 'role-delete', component: RoleDeleteAlert }];
|