joywok-material-components
Version:
<h1 align="center"> Joywok Material Components </h1>
20 lines (16 loc) • 355 B
JavaScript
import React from 'react';
import ReactDOM from 'react-dom';
import Switch from '@material-ui/core/Switch';
class JwSwitch extends React.Component{
constructor(props) {
super(props);
this.state = {};
}
render(){
return (<div className="jw-switch ">
<Switch {...this.props}/>
</div>
)
}
}
export default JwSwitch;