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