import { memo } from 'react'; import * as Tabs from '@radix-ui/react-tabs'; import { SettingsTabValues } from 'librechat-data-provider'; import SlashCommandSwitch from './SlashCommandSwitch'; import PlusCommandSwitch from './PlusCommandSwitch'; import AtCommandSwitch from './AtCommandSwitch'; function Commands() { return (
); } export default memo(Commands);