1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

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

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> {