🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

react-radio-buttons-group

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-radio-buttons-group

React component for a group of radio buttons

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

npm npm

React Radio Buttons Group

React component for a group of radio buttons built with and for React.

demo

stacklevel

Installation

npm install react-radio-buttons-group --save

Usage

<ReactRadioButtonsGroup/> with a list of <ReactRadioButton/> components generate a hidden radio inputs that contain checked value, so you can submit it as part of a standard form.

When the value is changed, onChange(inputRadioValue) will fire.

import { ReactRadioButtonsGroup, ReactRadioButton } from 'react-radio-buttons-group';

const RadioButtons = () => (
    <ReactRadioButtonsGroup group='sex' onChange={(value) => console.log(value)}>
        <ReactRadioButton value='male'>Male 👨</ReactRadioButton>
        <ReactRadioButton value='female'>Female đź‘©</ReactRadioButton>
    </ReactRadioButtonsGroup>
);

Demo & Examples

Coming soon...

demo

Components API

<ReactRadioButtonsGroup/>
PropertyTypeDescription
childrenfunctionChild function responsible for rendering the <ReactRadioButton/> components.
groupstringField name, for hidden <input /> tags
onChangefunctionFunction responsible for handling radio group changes. (inputRadioValue) => { }
<ReactRadioButton/>
PropertyTypeDescription
childrenfunctionChild function responsible for rendering the content into the <label>.
valuestringAttribute value for hidden <input type='radio' /> tag. Also uses as id attribute for <input type='radio' /> and for attribute for <label>.

Keywords

react

FAQs

Package last updated on 29 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts