Path: blob/master/src/packages/next/components/store/toggle-explanations.tsx
1450 views
/*1* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { set_local_storage } from "@cocalc/frontend/misc/local-storage";6import { Form, Switch } from "antd";78export function ToggleExplanations({ showExplanations, setShowExplanations }) {9return (10<Form.Item wrapperCol={{ offset: 0, span: 24 }}>11<div12style={{ float: "right", cursor: "pointer" }}13onClick={() => setShowExplanations(!showExplanations)}14>15<Switch16checked={showExplanations}17onChange={(show) => {18setShowExplanations(show);19// ugly and ignores basePath -- change later:20set_local_storage(21"store_site_license_show_explanations",22show ? "t" : ""23);24}}25/>{" "}26Show explanations27</div>28</Form.Item>29);30}313233