Name the default export from FuncArgTextArea correctly

pull/10616/head
ebb-tide 2018-05-30 18:59:41 -07:00
parent c626809e6f
commit fc3e2bc091
1 changed files with 3 additions and 3 deletions

View File

@ -19,10 +19,10 @@ interface State {
} }
@ErrorHandling @ErrorHandling
class FuncArgInput extends PureComponent<Props, State> { class FuncArgTextArea extends PureComponent<Props, State> {
private ref: React.RefObject<HTMLTextAreaElement> private ref: React.RefObject<HTMLTextAreaElement>
constructor(props) { constructor(props: Props) {
super(props) super(props)
this.ref = React.createRef() this.ref = React.createRef()
this.state = { this.state = {
@ -99,4 +99,4 @@ class FuncArgInput extends PureComponent<Props, State> {
} }
} }
export default FuncArgInput export default FuncArgTextArea