'use client' export function ErrorInSSRFromPackage({ children }) { if (typeof window === 'undefined') { throw new Error('Error from node_modules') } return children }