refactor(admin): split StepHeader, SDKSidebar, ScopeWizardTab, PIIRulesTab, ReviewExportStep, DocumentUploadSection components
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// =============================================================================
|
||||
// STEP EXPLANATION PRESETS — merged index
|
||||
// Combines Part1 (company-profile … einwilligungen) and
|
||||
// Part2 (dsr … use-case-workshop) for backward-compatible re-export.
|
||||
// =============================================================================
|
||||
|
||||
import type { StepTip } from './StepHeader'
|
||||
import { STEP_EXPLANATIONS_PART1 } from './StepExplanationsPart1'
|
||||
import { STEP_EXPLANATIONS_PART2 } from './StepExplanationsPart2'
|
||||
|
||||
type ExplanationEntry = { title: string; description: string; explanation: string; tips: StepTip[] }
|
||||
|
||||
export const STEP_EXPLANATIONS: Record<string, ExplanationEntry> = {
|
||||
...STEP_EXPLANATIONS_PART1,
|
||||
...STEP_EXPLANATIONS_PART2,
|
||||
}
|
||||
Reference in New Issue
Block a user