Interface syntax

Co-authored-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
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

View file

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