import React, { type ReactNode } from 'react' import { List } from '../../' function CartSidebarList({ children }: { children: ReactNode }) { return {children} } export default CartSidebarList