-
Notifications
You must be signed in to change notification settings - Fork 324
Expand file tree
/
Copy pathindex.tsx
More file actions
23 lines (20 loc) · 807 Bytes
/
Copy pathindex.tsx
File metadata and controls
23 lines (20 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from 'react';
import { PluginSlot } from '@openedx/frontend-plugin-framework';
import SidebarTriggers from '../../courseware/course/sidebar/SidebarTriggers';
export const RightSidebarTriggerSlot : React.FC = () => (
<PluginSlot
id="org.openedx.frontend.learning.right_sidebar_trigger.v1"
idAliases={[
'right_sidebar_trigger_slot',
// @deprecated — aliased for backward compat; remove after one deprecation cycle (ADR 0010)
'notifications_discussions_sidebar_trigger_slot',
// @deprecated — aliased for backward compat; remove after one deprecation cycle (ADR 0010)
'org.openedx.frontend.learning.notifications_discussions_sidebar_trigger.v1',
]}
slotOptions={{
mergeProps: true,
}}
>
<SidebarTriggers />
</PluginSlot>
);