import React from 'react' import { connect } from 'react-redux'; import { Checkbox } from 'UI' import { updateClient } from 'Duck/user' function OptOut(props) { const { optOut } = props; const onChange = () => { props.updateClient({ optOut: !optOut }) } return (