import classNames from 'classnames'; interface Props { children: string; } export function FormattedError({ children }: Props) { return (
      {children}
    
); }