32 lines
800 B
TypeScript
32 lines
800 B
TypeScript
"use client";
|
|
|
|
import { memo } from "react";
|
|
import { CreateFlowFooterView } from "./CreateFlowFooter.view";
|
|
import type { CreateFlowFooterProps } from "./CreateFlowFooter.types";
|
|
|
|
const CreateFlowFooterContainer = memo<CreateFlowFooterProps>(
|
|
({
|
|
secondButton,
|
|
progressBar = true,
|
|
proportionBarProgress,
|
|
proportionBarVariant,
|
|
onBackClick,
|
|
className = "",
|
|
}) => {
|
|
return (
|
|
<CreateFlowFooterView
|
|
secondButton={secondButton}
|
|
progressBar={progressBar}
|
|
proportionBarProgress={proportionBarProgress}
|
|
proportionBarVariant={proportionBarVariant}
|
|
onBackClick={onBackClick}
|
|
className={className}
|
|
/>
|
|
);
|
|
},
|
|
);
|
|
|
|
CreateFlowFooterContainer.displayName = "CreateFlowFooter";
|
|
|
|
export default CreateFlowFooterContainer;
|