Browse Source

use class property of this.state

pull/12982/head
afc163 6 years ago
parent
commit
c88784a61c
  1. 13
      components/avatar/index.tsx

13
components/avatar/index.tsx

@ -37,15 +37,12 @@ export default class Avatar extends React.Component<AvatarProps, AvatarState> {
size: 'default',
};
private avatarChildren: any;
state = {
scale: 1,
isImgExist: true,
};
constructor(props: AvatarProps) {
super(props);
this.state = {
scale: 1,
isImgExist: true,
};
}
private avatarChildren: any;
componentDidMount() {
this.setScale();

Loading…
Cancel
Save