File size: 185 Bytes
fc0f7bd
 
 
 
 
 
 
1
2
3
4
5
6
7
import { IFairnessContext } from "./IFairnessContext";

export interface IWizardTabProps {
    dashboardContext: IFairnessContext;
    onNext: () => void;
    onPrevious?: () => void;
}