Fix code example in "writing-addons" docs

This commit is contained in:
Ben 2019-03-04 19:39:59 +00:00 committed by GitHub
parent aefc89dec0
commit 966a63104d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -184,7 +184,7 @@ class MyPanel extends React.Component {
componentDidMount() {
const { api } = this.props;
api.on('foo/doSomeAction', this.onSomeAction);
api.on(STORY_RENDERED this.onStoryChange);
api.on(STORY_RENDERED, this.onStoryChange);
}
componentWillUnmount() {
const { api } = this.props;