Creates a row of buttons that can be toggled on/off
The easiest way to use react-simple-options-selector is to install it from NPM and include it in your own React build process (using Browserify, Webpack, etc).
You can also use the standalone build by including dist/react-simple-options-selector.js
in your page. If you use this, make sure you have already included React, and it is available as a global variable.
npm install react-simple-options-selector --save
import ReactSimpleOptionsSelector from "react-simple-options-selector"
<ReactSimpleOptionsSelector />
From ../src/ReactSimpleOptionsSelector.js
Default:
[
{
id: uuid.v4(),
label: 'Option A',
selected: true,
},
{
id: uuid.v4(),
label: 'Option B',
selected: false,
},
{
id: uuid.v4(),
label: 'Option C',
selected: false,
}
]
Default : 'react_simple_options_selector_example'
// Default
(name, selected)=>{
console.log(name, selected);
}
/**
Options: 'radio' or 'checkbox'
radio: One selection can be made
checkbox: Multiple selections can be made
**/
Default: 'radio'
Default: : "center"
Default: : 10
Default: : 0
Default: : 10
Default: : 0
Default: : 0
Default: : 0
Default: : 0
Default: : 0
Default: : "#06BA90"
Default: : "#04755B"
Default: : "#ffffff"
To build the examples locally, run:
npm install
npm start
Then open localhost:8000
in a browser.
Version 1.0.0 is a bare minium example I’ve built for my own project. Please submit any feature requests or pull requests with new feature to make this awesome.
This has been scaffolded by - JedWatson’s generator-react-component
src
, lib
and the build process)NOTE: The source code for the component is in src
. A transpiled CommonJS version (generated with Babel) is available in lib
for use with node.js, browserify and webpack. A UMD bundle is also built to dist
, which can be included without the need for any build system.
To build, watch and serve the examples (which will also watch the component source), run npm start
. If you just want to watch changes to src
and rebuild lib
, run npm run watch
(this is useful if you are working with npm link
).
Author: ankithkonda
Demo: https://ankithkonda.github.io/react-simple-options-selector/
Source Code: https://github.com/ankithkonda/react-simple-options-selector
☞ JavaScript for React Developers | Mosh
☞ Learn React - Full Course for Beginners - React Tutorial 2019
☞ React + TypeScript : Why and How
☞ Getting Closure on React Hooks
☞ React Tutorial - Learn React - React Crash Course [2019]
☞ Page Transitions In React - React Router V6 and Framer Motion Tutorial