Interface syntax

Co-authored-by: Travis Ralston <travpc@gmail.com>
pull/21833/head
Jason Robinson 2020-12-01 13:50:58 +02:00 committed by GitHub
parent 85ce95e066
commit 8f7b012ec1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ interface IProps {
} }
interface IState { interface IState {
completed: boolean, completed: boolean;
error: string, error: string;
} }
export default class HostingSignupDialog extends React.PureComponent<IProps, IState> { export default class HostingSignupDialog extends React.PureComponent<IProps, IState> {