import { observer } from "mobx-react"; import { BeakerIcon } from "outline-icons"; import { useState } from "react"; import * as React from "react"; import { useTranslation, Trans } from "react-i18next"; import Heading from "~/components/Heading"; import HelpText from "~/components/HelpText"; import Scene from "~/components/Scene"; import Toggle from "~/components/Toggle"; import useCurrentTeam from "~/hooks/useCurrentTeam"; import useStores from "~/hooks/useStores"; import useToasts from "~/hooks/useToasts"; function Features() { const { auth } = useStores(); const team = useCurrentTeam(); const { t } = useTranslation(); const { showToast } = useToasts(); const [data, setData] = useState({ collaborativeEditing: team.collaborativeEditing, }); const handleChange = React.useCallback( async (ev: React.ChangeEvent) => { const newData = { ...data, [ev.target.name]: ev.target.checked }; setData(newData); await auth.updateTeam(newData); showToast(t("Settings saved"), { type: "success", }); }, [auth, data, showToast, t] ); return ( }> Features Manage optional and beta features. Changing these settings will affect the experience for all team members. When enabled multiple people can edit documents at the same time with shared presence and live cursors. } /> ); } export default observer(Features);