diff options
Diffstat (limited to 'makima/frontend/src/components/directives/VerifiersTab.tsx')
| -rw-r--r-- | makima/frontend/src/components/directives/VerifiersTab.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/makima/frontend/src/components/directives/VerifiersTab.tsx b/makima/frontend/src/components/directives/VerifiersTab.tsx new file mode 100644 index 0000000..cfcfdd8 --- /dev/null +++ b/makima/frontend/src/components/directives/VerifiersTab.tsx @@ -0,0 +1,12 @@ +import type { DirectiveWithProgress } from "../../lib/api"; + +export function VerifiersTab({ directive: _directive }: { directive: DirectiveWithProgress }) { + // TODO: Fetch verifiers separately + return ( + <div className="text-center py-8"> + <p className="font-mono text-sm text-[#556677]"> + Verifiers will be shown here. Use auto-detect to find available verifiers. + </p> + </div> + ); +} |
