Chap03 -> Handling events -> Handling a button click event

This commit is contained in:
Yiqing Zhu 2022-03-26 16:50:56 +11:00
parent 0f31f492cc
commit 7dd02a76ea

View File

@ -17,14 +17,15 @@ export const HomePage = () => {
doGetUnansweredQuestion(); doGetUnansweredQuestion();
}, []); }, []);
console.log('rendered'); const handleAskQuestionClick = () => {
console.log('TODO - move to the AskPage');
};
return ( return (
<Page> <Page>
<div> <div>
<PageTitle>Unanswered Questions</PageTitle> <PageTitle>Unanswered Questions</PageTitle>
<button>Ask a question</button>{' '} <button onClick={handleAskQuestionClick}>Ask a question</button>
{/* This button component is passed as children of Page */}
</div> </div>
{questionsLoading ? ( {questionsLoading ? (
<div>Loading...</div> <div>Loading...</div>