-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented usage documentation for dnn-button
- Loading branch information
1 parent
00d8fe1
commit b8d80f7
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
packages/stencil-library/src/components/dnn-button/usage/HTML.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
```html | ||
<dnn-button | ||
confirm="" | ||
confirm-yes-text="Oh Yeah" | ||
confirm-no-text="No Way" | ||
confirm-message="Are you sure that you're sure that you're sure?" | ||
> | ||
Click me! | ||
</dnn-button> | ||
``` |
10 changes: 10 additions & 0 deletions
10
packages/stencil-library/src/components/dnn-button/usage/JSX-TSX.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
```tsx | ||
<dnn-button | ||
confirm="" | ||
confirmYesText="Oh Yeah" | ||
confirmNoText="No Way" | ||
confirmMessage="Are you sure that you're sure that you're sure?" | ||
> | ||
Click me! | ||
</dnn-button> | ||
``` |