- 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>
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
/**
|
|
* CourseLearningView — re-export from feature module.
|
|
*/
|
|
export {
|
|
CourseLearningView,
|
|
CourseLearningViewSkeleton,
|
|
} from './course-learning-view';
|
|
export type { CourseLearningViewProps } from './course-learning-view';
|