import React, { FC } from "react"; interface Props { label: string, value: string } export const QuestionCardField: FC = ({ label, value }) => { return (
{`${label}: `} {value}
) }