mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
b34269a6b1
convert var to const fix bug fix bug fix for jshint fix import
14 lines
231 B
JavaScript
14 lines
231 B
JavaScript
import Switch from 'rc-switch';
|
|
import React from 'react';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-switch'
|
|
};
|
|
},
|
|
render() {
|
|
return <Switch {...this.props}/>;
|
|
}
|
|
});
|