changed to new functions
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s
This commit is contained in:
@@ -63,7 +63,7 @@ const BasicDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
Mount(BasicDemo, '#demo-basic');
|
||||
mount(BasicDemo, '#demo-basic');
|
||||
```
|
||||
|
||||
|
||||
@@ -130,7 +130,7 @@ const ActionsDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
Mount(ActionsDemo, '#demo-actions');
|
||||
mount(ActionsDemo, '#demo-actions');
|
||||
```
|
||||
|
||||
### Form Modal
|
||||
@@ -199,7 +199,7 @@ const FormModal = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
Mount(FormModal, '#demo-form');
|
||||
mount(FormModal, '#demo-form');
|
||||
```
|
||||
|
||||
### Confirmation Modal
|
||||
@@ -260,7 +260,7 @@ const ConfirmDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
Mount(ConfirmDemo, '#demo-confirm');
|
||||
mount(ConfirmDemo, '#demo-confirm');
|
||||
```
|
||||
|
||||
### Large Content Modal
|
||||
@@ -312,7 +312,7 @@ const LargeDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
Mount(LargeDemo, '#demo-large');
|
||||
mount(LargeDemo, '#demo-large');
|
||||
```
|
||||
|
||||
### Multiple Modals
|
||||
@@ -354,7 +354,7 @@ const MultipleDemo = () => {
|
||||
}, 'Please review your input before proceeding.')
|
||||
]);
|
||||
};
|
||||
Mount(MultipleDemo, '#demo-multiple');
|
||||
mount(MultipleDemo, '#demo-multiple');
|
||||
```
|
||||
|
||||
### Custom Styled Modal
|
||||
@@ -391,5 +391,5 @@ const CustomDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
Mount(CustomDemo, '#demo-custom');
|
||||
mount(CustomDemo, '#demo-custom');
|
||||
```
|
||||
Reference in New Issue
Block a user