React - login function example

0 votes
251 views
added Dec 7, 2021 in React by lcjr First Warrant Officer (11,530 points)

Example of login function usage as follows:


render() {
  const {
      areadata,
      buildingtypesdata,
      dataCount,
      quickFacts,
      isLoading,
      page,
      datefrom,
      dateto, 
      rentListingCount,
      isRentListingCount,
    } = this.state;
    const LoginDetails = this.context.isLoggedin;
    const { isLoggedin } = this.context;
    
    return (
      <LocationScanDetailResultsComponent isLoggedin={isLoggedin} />
    );
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...