We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc68f04 commit 8015381Copy full SHA for 8015381
get-started.md
@@ -129,10 +129,10 @@ export default connect(Title)
129
import React from 'react'
130
import { connect, Connect } from '../app'
131
132
-const Title: React.SFC<Connect> = ({ appState, actions }) =>
+const Title: React.SFC<Connect> = ({ app }) =>
133
<div>
134
- <h1>{appState.title}</h1>
135
- <input value={appState.title} onChange={actions.changeTitle} />
+ <h1>{app.state.title}</h1>
+ <input value={app.state.title} onChange={actions.changeTitle} />
136
</div>
137
138
export default connect(Title)
0 commit comments