chore: add modal
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import { PageActionType } from './types';
|
||||
|
||||
export const PageAction: Record<string, PageActionType> = {
|
||||
CREATE: 'create',
|
||||
UPDATE: 'update',
|
||||
VIEW: 'view'
|
||||
};
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
export interface DropDownItem {
|
||||
key: string;
|
||||
label: string;
|
||||
icon?: React.ReactNode;
|
||||
disabled?: boolean;
|
||||
iconfont?: boolean;
|
||||
}
|
||||
|
||||
export type PageActionType = 'create' | 'update' | 'view';
|
||||
Reference in New Issue
Block a user