- Rx for JavaScriptについて、色々触った結論としてはこんな感じ
- あくまでも現時点の感想なんで、そのうち認識が変わるかも
- JavaScriptでRxを使う人ターゲットなんで、他の言語portにも効く話かはわからない
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'add-story-form', | |
template: ` | |
<div class="container"> | |
<h1>New Story</h1> | |
<form [formGroup]="newStory" | |
(submit)="submit($event)" | |
(success)="onSuccess()" | |
(error)="onError($event)" | |
connectForm="newStory"> |