Interface ImportSummaryPropsInternal

Props for the ImportSummary component.

export interface ImportSummaryProps {
data: KenmeiExport;
onProceed: () => void;
onCancel: () => void;
}
interface ImportSummaryProps {
    data: KenmeiExport;
    onProceed: () => void;
    onCancel: () => void;
}

Properties

The KenmeiExport data to summarize.

onProceed: () => void

Callback invoked when the user chooses to proceed with the import.

onCancel: () => void

Callback invoked when the user cancels the import.