Skip to content

Commit

Permalink
lint: add lost props
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Jul 12, 2022
1 parent 5481ec9 commit 01c575a
Showing 1 changed file with 7 additions and 1 deletion.
Expand Up @@ -50,11 +50,17 @@ export class ConceptNodeWidget extends React.Component<ConceptNodeWidgetProps,
</StyledPorts>

<StyledNodeColor>
<Editor />
<Editor onChange={this.onChange}/>
</StyledNodeColor>
</StyledConceptNodeWidget>
);
}

private onChange() {
this.setState({
value: "text"
});
}
}

const StyledPorts = styled.div`
Expand Down

0 comments on commit 01c575a

Please sign in to comment.