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

15 lines
314 B
TypeScript

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