import { FC } from 'react'; interface Props { apiKey: string; onApiKeyChange: (apiKey: string) => void; } export const Key: FC = ({ apiKey, onApiKeyChange }) => { return null; };