December 2019
Intermediate to advanced
598 pages
12h 21m
English
Let's move to the HomePage component and only show the Ask a question button if the user is authenticated:
import { useAuth } from './Auth';
export const HomePage: FC<Props> = ( ... ) => { ... const { isAuthenticated } = useAuth(); return ( ... );};
<Page> <div ... > <PageTitle>Unanswered Questions</PageTitle> {isAuthenticated && ( <PrimaryButton onClick={handleAskQuestionClick}> ...Read now
Unlock full access