/** @jsxImportSource @emotion/react */ import { css } from '@emotion/react'; import React from 'react'; import { Question } from './Question'; import { QuestionData } from './QuestionsData'; import { accent2, gray5 } from './Styles'; interface Props { data: QuestionData[]; } export const QuestionList = ({ data }: Props) => ( );