pub fn radio_button<T>(
    represented_value: T,
    actual_value: ReadSignal<T>,
    props: Option<RadioProps>
) -> impl View
where T: Eq + PartialEq + Clone + 'static,