import { FC, memo } from 'react' import classnames from 'classnames' import MaterialIcon from '@/shared/components/material-icon' import { useTranslation } from 'react-i18next' import { useReviewPanelViewActionsContext, useReviewPanelViewContext, } from '../context/review-panel-view-context' const ReviewPanelTabs: FC = () => { const subView = useReviewPanelViewContext() const { setView: setSubView } = useReviewPanelViewActionsContext() const { t } = useTranslation() return ( <> ) } export default memo(ReviewPanelTabs)