/** @jsxImportSource @emotion/react */ import { css } from '@emotion/react'; import { useNavigate } from 'react-router-dom'; import React from 'react'; import { PageTitle } from './PageTitle'; import { Page } from './Page'; import { QuestionList } from './QuestionList'; import { getUnansweredQuestions, QuestionData } from './QuestionsData'; import { PrimaryButton } from './Styles'; 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 navigate = useNavigate(); const handleAskQuestionClick = () => { navigate('ask'); }; return (
Unanswered Questions Ask a question
{questionsLoading ? (
Loading...
) : ( )}
); };