'use client' import type { FC } from 'react' import React from 'react' import type { UpdateFromGitHubPayload } from '../types' import InstallFromGitHub from '../install-plugin/install-from-github' type Props = { payload: UpdateFromGitHubPayload onSave: () => void onCancel: () => void } const FromGitHub: FC = ({ payload, onSave, onCancel, }) => { return ( ) } export default React.memo(FromGitHub)