Files
frontend-app-authoring/src/plugin-slots/CourseVideosSlot/index.tsx
Kshitij Sobti 15a728d0e7 feat: Add slots for video and file upload components and alerts (#1523)
This change add plugin slots for the file and video upload components, and the alerts components on those pages.
2025-10-24 14:39:50 -07:00

12 lines
373 B
TypeScript

import { PluginSlot } from '@openedx/frontend-plugin-framework';
import { CourseVideosTable } from '@src/files-and-videos/videos-page/CourseVideosTable';
import React from 'react';
const CourseVideosSlot = () => (
<PluginSlot id="org.openedx.frontend.authoring.videos_upload_page_table.v1">
<CourseVideosTable />
</PluginSlot>
);
export default CourseVideosSlot;