diff --git a/QandA/frontend/src/AnswerList.tsx b/QandA/frontend/src/AnswerList.tsx new file mode 100644 index 0000000..a77ad69 --- /dev/null +++ b/QandA/frontend/src/AnswerList.tsx @@ -0,0 +1,31 @@ +/** @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) => { + ; +};