/** @jsxImportSource @emotion/react */ import { css } from '@emotion/react'; import React from 'react'; import { AnswerData } from './QuestionsData'; import { Answer } from './Answer'; import { gray5 } from './Styles'; interface Props { data: AnswerData[]; } export const AnswerList = ({ data }: Props) => ( );