import React from 'react'; const ToggleSwitch = ({ label, checked, onChange }) => { return (
); }; export default ToggleSwitch;