Files
progress-test/app/javascript/pages/assessment/components/QuestionCardField.tsx
2023-08-25 22:33:33 -03:00

16 lines
391 B
TypeScript

import React, { FC } from "react";
import { Maybe } from "../../../__generated__/graphql-schema";
interface Props {
label: string,
value?: Maybe<string>
}
export const QuestionCardField: FC<Props> = ({ label, value }) => {
return (
<div>
<span className="text-gray-700">{`${label}: `}</span>
<span>{value ?? ''}</span>
</div>
)
}