checkincheckout = () => {
this.setState({ visible: !this.state.visible })
}
render() {
return (
{this.state.visible == false ?
this.checkincheckout()}>
Click to Check in
:
this.checkincheckout()}>
Click to Check out
}
);
}
thats all. enjoy your coding...