import { FC } from 'react' import { UserNav } from '@components/core' import { Button } from '@components/ui' import { Trash, Cross } from '@components/icon' import { useUI } from '@components/ui/context' const CartSidebarView: FC = () => { const { closeSidebar } = useUI() return ( <>

My Cart

) } export default CartSidebarView