import React from 'react'; import { PageTitle } from './PageTitle'; import { Page } from './Page'; import { QuestionList } from './QuestionList'; import { getUnansweredQuestions, QuestionData } from './QuestionsData'; export const HomePage = () => { const [questions, setQuestions] = React.useState([]); const [questionsLoading, setQuestionsLoading] = React.useState(true); React.useEffect(() => { const doGetUnansweredQuestion = async () => { const unanswereedQuestions = await getUnansweredQuestions(); setQuestions(unanswereedQuestions); setQuestionsLoading(false); }; doGetUnansweredQuestion(); }, []); const handleAskQuestionClick = () => { console.log('TODO - move to the AskPage'); }; return (
Unanswered Questions
{questionsLoading ? (
Loading...
) : ( )}
); };