import React, { Fragment } from 'react'; import { useThemeHooks } from '@redocly/theme/core/hooks'; import { Link } from "@redocly/theme/components/Link/Link"; import { slugify } from "./slugify"; import { CommandGroup, CommandMethod } from './types'; interface RightSideBarProps { commandList: CommandGroup[]; currentMethod: CommandMethod; setCurrentMethod: any; } export const RightSideBar: React.FC = ({ commandList, currentMethod, setCurrentMethod, }) => { const { useTranslate } = useThemeHooks(); const { translate } = useTranslate(); return (

{translate("API Methods")}

); };