@feizheng/react-ant-switch

1.0.0 • Public • Published

react-ant-switch

React ant switch.

version license size download

installation

npm install -S @feizheng/react-ant-switch

update

npm update @feizheng/react-ant-switch

properties

Name Type Required Default Description
className string false - The extended className for component.
value bool false - The runtime value.
defaultValue bool false - Default value.
onChange func false noop The change handler.

usage

  1. import css
@import "~@feizheng/react-ant-switch/dist/style.scss";

// customize your styles:
$react-ant-switch-options: ()
  1. import js
import React from 'react';
import ReactDOM from 'react-dom';
import ReactAntSwitch from '@feizheng/react-ant-switch';
import './assets/style.scss';

class App extends React.Component {
  componentDidMount() {}
  render() {
    return (
      <div className="app-container">
        <ReactAntSwitch
          onChange={(e) => {
            console.log('value:', e.target.value);
          }}
        />
      </div>
    );
  }
}

ReactDOM.render(<App />, document.getElementById('app'));

documentation

license

Code released under the MIT license.

Readme

Keywords

Package Sidebar

Install

npm i @feizheng/react-ant-switch

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

19 kB

Total Files

6

Last publish

Collaborators

  • afeiship