import React, { Dispatch, ReactElement } from 'react'; interface Props { soundsOn: boolean; setSoundsOn: Dispatch; } const Settings = ({ soundsOn, setSoundsOn }: Props): ReactElement => (
setSoundsOn(target.checked)} id="phlegmaticSoundsOn" /> {/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
); export default Settings;