import { FC } from "react"; export const Flow: FC<{ children: any; PassProp: any; flow: { text: string; popover: any; icon: any }[]; props?: any; }> = ({ PassProp, children, flow, props }) => { return (
{flow.map((item, idx) => { return ( {children} ); })}
); };