All files / src/pages/flowsheet-page/economics/cost-curves/ui FieldError.tsx

33.33% Statements 3/9
25% Branches 1/4
100% Functions 1/1
40% Lines 2/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 1315x 15x                      
export function FieldError({ id, message }: { id: string; message?: string }) {
  Iif (!message) return null;
  return (
    <div
      id={id}
      className="text-xs text-orange-700 dark:text-orange-300"
      role="status"
    >
      {message}
    </div>
  );
}