"use client"; import { memo } from "react"; import { CreateFlowFooterView } from "./CreateFlowFooter.view"; import type { CreateFlowFooterProps } from "./CreateFlowFooter.types"; const CreateFlowFooterContainer = memo( ({ secondButton, progressBar = true, onBackClick, className = "" }) => { return ( ); }, ); CreateFlowFooterContainer.displayName = "CreateFlowFooter"; export default CreateFlowFooterContainer;