Skip to content

Commit

Permalink
docs: clean
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingByJerez committed Jul 8, 2021
1 parent 4f8506e commit 03a3950
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Child = () => {
{
title: 'Ok',
buttonProps: { color: 'primary' },
onClick: async () => {
onClick: () => {
alert('callback button Ok');
DialogAlert.hide();
},
Expand Down
2 changes: 1 addition & 1 deletion example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Child = () => {
{
title: 'Ok',
buttonProps: { color: 'primary' },
onClick: async () => {
onClick: () => {
alert('callback button Ok :)');
DialogAlert.hide();
},
Expand Down

0 comments on commit 03a3950

Please sign in to comment.