We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb7c3e5 commit 8d8b094Copy full SHA for 8d8b094
*state-machine-component.md
@@ -64,7 +64,7 @@ const ToDos = stateMachineComponent(
64
// state, action(type)
65
({ todos, text }, action) => (
66
<div>
67
- <h2>State Machine ToDo's</h2>
+ <h2>State Machine ToDos</h2>
68
<ul>{todos.map( todo => <li>{todo}</li> )}</ul>
69
<form onSubmit={action('ADD')}>
70
<input value={text} onInput={action('TEXT')} />
0 commit comments