Skip to main content
TransferTab component

Props

config
AgentConfig
required
config
updateConfig
<K extends keyof AgentConfig>( key: K, value: AgentConfig[K] ) => void
required
updateConfig
errors
Record<string, string>
required
errors

Usage

import { TransferTab } from '@/components/TransferTab';

export default function Example() {
  return (
    <TransferTab config={config} updateConfig={updateConfig} errors={errors} />
  );
}