Right rail template
This commit is contained in:
+2
-2
@@ -35,7 +35,7 @@ export interface CreateFlowState {
|
||||
export interface CreateFlowContextValue {
|
||||
state: CreateFlowState;
|
||||
currentStep: CreateFlowStep | null;
|
||||
updateState: (updates: Partial<CreateFlowState>) => void;
|
||||
updateState: (_updates: Partial<CreateFlowState>) => void;
|
||||
// Navigation handlers will be added in CR-56
|
||||
}
|
||||
|
||||
@@ -55,7 +55,7 @@ export interface PageTemplateProps {
|
||||
export interface NavigationHandlers {
|
||||
goToNextStep: () => void;
|
||||
goToPreviousStep: () => void;
|
||||
goToStep: (step: CreateFlowStep) => void;
|
||||
goToStep: (_step: CreateFlowStep) => void;
|
||||
canGoNext: () => boolean;
|
||||
canGoBack: () => boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user