Chap03 -> Handling events -> Handling a button click event
This commit is contained in:
parent
0f31f492cc
commit
7dd02a76ea
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user