import { getConfig } from '@edx/frontend-platform'; import { PluginSlot } from '@openedx/frontend-plugin-framework/dist'; import TagsSidebarControls from '../../content-tags-drawer/tags-sidebar-controls'; import Sidebar from '../../course-unit/sidebar'; import LocationInfo from '../../course-unit/sidebar/LocationInfo'; import PublishControls from '../../course-unit/sidebar/PublishControls'; export const CourseAuthoringUnitSidebarSlot = ( { blockId, courseId, unitTitle, }: CourseAuthoringUnitSidebarSlotProps, ) => ( {getConfig().ENABLE_TAGGING_TAXONOMY_PAGES === 'true' && ( )} ); interface CourseAuthoringUnitSidebarSlotProps { blockId: string; courseId: string; unitTitle: string; }