'use client' import { StepOrientation as BaseStepOrientation } from '@/components/ocr-pipeline/StepOrientation' interface StepOrientationProps { sessionId: string | null onNext: (sessionId: string) => void onSessionList: () => void } /** Thin wrapper around the shared StepOrientation component */ export function StepOrientation({ sessionId, onNext, onSessionList }: StepOrientationProps) { return ( ) }