import { Button } from '@openedx/paragon'; import { getConfig } from '@edx/frontend-platform'; import { PluginSlot } from '@openedx/frontend-plugin-framework'; import { useIntl } from '@edx/frontend-platform/i18n'; import messages from '../../../courseware/course/course-exit/messages'; interface Props { href: string } const ViewCoursesLink: React.FC = ({ href }: Props) => { const intl = useIntl(); return (
); }; export const CourseExitViewCoursesPluginSlot: React.FC = () => { const href = `${getConfig().LMS_BASE_URL}/dashboard`; return ( ); };