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