2022-03-24 00:02:35 +11:00
|
|
|
import React from 'react';
|
2022-03-26 00:08:00 +11:00
|
|
|
import { QuestionList } from './QuestionList';
|
|
|
|
import { getUnansweredQuestions } from './QuestionsData';
|
2022-03-24 00:02:35 +11:00
|
|
|
|
|
|
|
export const HomePage = () => (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<h2>Unanswered Questions</h2>
|
|
|
|
<button>Ask a question</button>
|
|
|
|
</div>
|
2022-03-26 00:08:00 +11:00
|
|
|
<QuestionList data={getUnansweredQuestions()} />
|
2022-03-24 00:02:35 +11:00
|
|
|
</div>
|
|
|
|
);
|