Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /** * @module components/training * @category Training Components */ export { default as TrainingControlsPanel } from "./components/TrainingControlsPanel"; export { default as TrainingDummy } from "./components/TrainingDummy"; export { default as TrainingFeedback } from "./components/TrainingFeedback"; export { default as TrainingModeSelector } from "./components/TrainingModeSelector"; export { default as TrainingStatsPanel } from "./components/TrainingStatsPanel"; export { default as VitalPointTrainingPanel } from "./components/VitalPointTrainingPanel"; export { default as TrainingScreen } from "./TrainingScreen"; // Re-export component props for external use export type { TrainingControlsPanelProps } from "./components/TrainingControlsPanel"; export type { TrainingDummyProps } from "./components/TrainingDummy"; export type { TrainingFeedbackProps } from "./components/TrainingFeedback"; export type { TrainingModeSelectorProps } from "./components/TrainingModeSelector"; export type { TrainingStatsPanelProps } from "./components/TrainingStatsPanel"; export type { VitalPointTrainingPanelProps } from "./components/VitalPointTrainingPanel"; export type { TrainingScreenProps } from "./TrainingScreen"; |