import React from "react"; import "./App.css"; function Settings() { function handleMoveChange(newValue) { window.localStorage.setItem("autoMoveComma", newValue.target.checked); } function handleStartChange(newValue) { window.localStorage.setItem("allowStartOver", newValue.target.checked); } return (

Einstellungen

handleMoveChange(e)} defaultChecked={JSON.parse(window.localStorage.getItem("autoMoveComma"))} />
handleStartChange(e)} defaultChecked={JSON.parse(window.localStorage.getItem("allowStartOver"))}/>
); } export default Settings;