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