Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli authored Oct 20, 2024
1 parent 97da999 commit 59da33f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Toggler = createMachine({
<template>
<Toggler as |toggler|>
{{toggler.valuePath}}
{{toggler.statePath}}
<button {{on 'click' (fn toggler.send 'TOGGLE')}}>
Toggle
Expand Down Expand Up @@ -104,7 +104,7 @@ const AuthenticatedToggle = setup({
<template>
<AuthenticatedToggle as |toggle|>
{{toggle.valuePath}}
{{toggle.statePath}}
<button {{on 'click' (fn toggle.send 'TOGGLE')}}>
Toggle
Expand Down Expand Up @@ -216,7 +216,7 @@ const input = {
<template>
<Toggle @input={{input}} as |toggle|>
{{toggle.valuePath}}
{{toggle.statePath}}
<button type="button" {{on "click" (fn toggle.send "TOGGLE")}}>
Toggle
Expand Down

0 comments on commit 59da33f

Please sign in to comment.