Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/Switch.js
Henry Whitaker ea5808047f Tweaked gitignore
gitignore removed all composer and npm files, so automated builds would fail
2020-04-12 21:24:03 +01:00

13 lines
400 B
JavaScript
Vendored

import _extends from "@babel/runtime/helpers/esm/extends";
import React from 'react';
import FormCheck from './FormCheck';
var Switch = React.forwardRef(function (props, ref) {
return React.createElement(FormCheck, _extends({}, props, {
ref: ref,
type: "switch"
}));
});
Switch.displayName = 'Switch';
Switch.Input = FormCheck.Input;
Switch.Label = FormCheck.Label;
export default Switch;