import { memo } from "@wordpress/element"; // @ts-ignore import Icon from '@/utils/Icon'; const Premium = memo(({ bullets, stepId }: { bullets?: string[] | string[][], stepId: string }) => { if (!bullets || bullets.length === 0) return null; return ( <>
{bullets.map((row, rowIndex) => (
{row.map((bullet, colIndex) => (

{bullet}

))}
))}
); }); export default Premium;