refactor(education): CourseLearningView module with hook, subcomponents, skeleton
- Add course-learning-view/ with useCourseLearningView, Header, Player, Tabs, Sidebar, Skeleton
- Layout min-h-layout-main, no arbitrary values
- Re-export from CourseLearningView.tsx
- Stories: Default, Loading (Skeleton), Empty, Complete
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-05 22:45:58 +00:00
|
|
|
/**
|
|
|
|
|
* CourseLearningView — re-export from feature module.
|
|
|
|
|
*/
|
|
|
|
|
export {
|
|
|
|
|
CourseLearningView,
|
|
|
|
|
CourseLearningViewSkeleton,
|
|
|
|
|
} from './course-learning-view';
|
|
|
|
|
export type { CourseLearningViewProps } from './course-learning-view';
|