ArrayRadioInputsPropsinterface

{
	items: ImmutableArray<T>;
	formatter?: ((value: T) => ReactNode) | undefined;
}
PropertyType
.itemsImmutableArray<T>
Array of values to show in the list of radios. required
.formatter((value: T) => ReactNode)
Function that formats an obscure item into a ReactNode for display.

Props for ArrayRadioInputs, which renders a radio for each item in an array of values.