资源删除初步

This commit is contained in:
禺狨
2023-03-13 11:00:34 +08:00
parent 69da71b7c2
commit 28d192b590
9 changed files with 151 additions and 59 deletions

View File

@@ -8,6 +8,7 @@ interface PropInterface {
class: string;
icon: any;
onClick: () => void;
disabled: any;
}
export const PerButton = (props: PropInterface) => {
@@ -29,6 +30,7 @@ export const PerButton = (props: PropInterface) => {
onClick={() => {
props.onClick();
}}
disabled={props.disabled}
>
{props.text}
</Button>
@@ -41,6 +43,7 @@ export const PerButton = (props: PropInterface) => {
onClick={() => {
props.onClick();
}}
disabled={props.disabled}
>
{props.text}
</Button>