Skip to content

Commit

Permalink
Remove ui-action from README
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonmade committed Sep 22, 2024
1 parent 85d3eb1 commit 53f88ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions developer/extensions/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ export default extension((root, {target}) => {
<ui-text emphasis>${countText}</ui-text> times.
</ui-text>
<ui-action
onPress=${() => {
<ui-button
onpress=${() => {
count++;
countText.textContent = String(count);
}}
>
Click me!
</ui-action>
</ui-button>
</ui-block-stack>
`;

Expand Down

0 comments on commit 53f88ec

Please sign in to comment.