import classNames from 'classnames'; import type { ReactNode } from 'react'; interface Props { children: ReactNode; } export function FormattedError({ children }: Props) { console.log('ERROR', children); return (
      {children}
    
); }