import * as React from 'react'; import { Answer } from './Answer'; export interface IQuestionAnswerProps { question: string; answer: string; answerId: number; sources: string[]; } export const QuestionAnswer: React.FunctionComponent = ({ question, answer, answerId, sources }: React.PropsWithChildren) => { return ( ); };