'use client'; import { Popover, PopoverButton, PopoverPanel, Transition } from '@headlessui/react'; import { ArrowRightIcon } from '@heroicons/react/16/solid'; import { Menu } from 'lib/shopify/types'; import { Fragment } from 'react'; import OpenProfile from './open-profile'; type ProfilePopoverProps = { menu: Menu[]; }; const ProfilePopover = ({ menu }: ProfilePopoverProps) => { return (
My Account Sign in {menu.length ? ( ) : null}
); }; export default ProfilePopover;