import React from 'react'; import { Question } from './Question'; import { QuestionData } from './QuestionsData'; interface Props { data: QuestionData[]; } export const QuestionList = ({ data }: Props) => ( );