Files
Triple-C/app/src/components/settings/ApiKeyInput.tsx

11 lines
385 B
TypeScript
Raw Normal View History

export default function ApiKeyInput() {
return (
<div>
<label className="block text-sm font-medium mb-1">Authentication</label>
<p className="text-xs text-[var(--text-secondary)] mb-3">
Each project can use <strong>claude login</strong> (OAuth, run inside the terminal) or <strong>AWS Bedrock</strong>. Set auth mode per-project.
</p>
</div>
);
}