15 lines
751 B
TypeScript
15 lines
751 B
TypeScript
/**
|
|
* Секции и компоненты дашборда ментора (iOS 26).
|
|
*/
|
|
|
|
export { IncomeSection } from './IncomeSection';
|
|
export type { IncomeSectionProps, IncomePeriod } from './IncomeSection';
|
|
export { StatsSection } from './StatsSection';
|
|
export type { StatsSectionProps } from './StatsSection';
|
|
export { ExtraStatsSection } from './ExtraStatsSection';
|
|
export type { ExtraStatsSectionProps } from './ExtraStatsSection';
|
|
export { UpcomingLessonsSection } from './UpcomingLessonsSection';
|
|
export type { UpcomingLessonsSectionProps } from './UpcomingLessonsSection';
|
|
export { RecentSubmissionsSection } from './RecentSubmissionsSection';
|
|
export type { RecentSubmissionsSectionProps } from './RecentSubmissionsSection';
|