matt HOFFNER
cleanup
a646f5a
raw
history blame contribute delete
195 Bytes
import { FC } from 'react';
interface Props {
apiKey: string;
onApiKeyChange: (apiKey: string) => void;
}
export const Key: FC<Props> = ({ apiKey, onApiKeyChange }) => {
return null;
};