feat: add and use ModalProps interface
This commit is contained in:
parent
6071bbce35
commit
fb452d8a5b
3 changed files with 13 additions and 3 deletions
|
@ -87,3 +87,10 @@ export interface DropdownOption {
|
|||
value: string | number,
|
||||
callback: () => void
|
||||
}
|
||||
|
||||
export interface ModalProps {
|
||||
title?: string,
|
||||
heavy?: boolean,
|
||||
onClose?: () => void,
|
||||
onCancel?: () => void
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue