16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
import Radios from "./Radios"
|
|
|
|
function RadioContent({ group, text, value, changeData }) {
|
|
return (
|
|
<div>
|
|
<p className="text-[16px] font-medium text-[#3B3B3B]">{text}</p>
|
|
<Radios
|
|
changeData={changeData}
|
|
group={group}
|
|
value={value}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default RadioContent |