Improvment in tslint standard (#16)

This commit is contained in:
Qolzam
2017-10-10 16:39:02 +07:00
parent 181d2b8abd
commit 1937742f04
160 changed files with 984 additions and 1019 deletions

View File

@@ -24,7 +24,7 @@ export class Signup extends Component {
* @param {object} props is an object properties of component
*/
constructor(props){
super(props);
super(props)
this.state = {
fullNameInput: '',
@@ -82,7 +82,7 @@ export class Signup extends Component {
this.setState({
checkInputError: ''
})
break;
break
default:
@@ -97,7 +97,7 @@ export class Signup extends Component {
const {fullNameInput, emailInput, passwordInput, confirmInput} = this.state
const {register} = this.props
var error = false
let error = false
// Validate full name
let fullNameCheck = fullNameInput.trim().toLowerCase()
@@ -165,7 +165,7 @@ export class Signup extends Component {
textAlign: 'center',
display: 'block',
margin: "auto"
};
}
return (