File tree 1 file changed +4
-4
lines changed
packages/cycle-scripts/template/src/typescript
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = replacements => `${ replacements . import }
2
2
${ replacements . typeImport }
3
3
import { DOMSource, VNode } from '@cycle/dom'
4
- import { Sources, Sinks, Reducer } from './interfaces'
4
+ import { Sources, Sinks } from './interfaces'
5
5
6
6
export type AppState = {
7
- count : number;
7
+ count : number
8
8
}
9
9
export type AppReducer = (prevState : AppState) => AppState
10
10
11
+ const initalState : AppState = { count: 0 }
12
+
11
13
export function App({ DOM } : Sources) : Sinks {
12
14
const action$ : ${ replacements . streamType } <AppReducer> = intent(DOM)
13
15
const model$ : ${ replacements . streamType } <AppState> = model(action$)
@@ -18,8 +20,6 @@ export function App({ DOM } : Sources) : Sinks {
18
20
}
19
21
}
20
22
21
- const initalState : AppState = { count: 0 }
22
-
23
23
function intent(DOM : DOMSource) : ${ replacements . streamType } <AppReducer> {
24
24
const add$ = DOM.select('.add').events('click')
25
25
.${ replacements . mapTo } (prevState => ({ ...prevState, count: prevState.count + 1 }))
You can’t perform that action at this time.
0 commit comments