summaryrefslogtreecommitdiff
path: root/makima/frontend/src/components/directives/EvaluationsTab.tsx
blob: c1d65dbef264c1f5e44a52eaf9cf446fa34b5922 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { DirectiveWithProgress } from "../../lib/api";

export function EvaluationsTab({ directive: _directive }: { directive: DirectiveWithProgress }) {
  // TODO: Fetch evaluations separately
  return (
    <div className="text-center py-8">
      <p className="font-mono text-sm text-[#556677]">
        Evaluations will be shown here after steps are evaluated
      </p>
    </div>
  );
}