antbf-radio-group
Radio group table filter for antd.
installation
npm install -S @jswork/antbf-radio-group
properties
Name | Type | Required | Default | Description |
---|
className | string | false | - | The extended className for component. |
value | object | false | null | Default value. |
onChange | func | false | noop | The change handler. |
usage
- import css
@import "~@jswork/boilerplate-react-component/dist/style.css";
@import "~@jswork/boilerplate-react-component/dist/style.scss";
$boilerplate-react-component-options: ()
- import js
import React from 'react';
import AntbfRadioGroup from '../@jswork/boilerplate-react-component';
import styled from 'styled-components';
const Container = styled.div`
width: 80%;
margin: 30px auto 0;
`;
export default (props: any) => {
return (
<Container>
<AntbfRadioGroup />
</Container>
);
};
license
Code released under the MIT license.