File size: 195 Bytes
a646f5a
3861128
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { FC  } from 'react';

interface Props {
  apiKey: string;
  onApiKeyChange: (apiKey: string) => void;
}

export const Key: FC<Props> = ({ apiKey, onApiKeyChange }) => {
  return null;
};