import React from 'react' import { FormControl, FormControlLabel, Radio, RadioGroup } from '@mui/material' import type { BlastLookupMethod } from './NCBIBlastPanel' export default function NCBIBlastMethodSelector({ lookupMethod, setLookupMethod, }: { lookupMethod: BlastLookupMethod setLookupMethod: (method: BlastLookupMethod) => void }) { return ( { setLookupMethod(event.target.value as BlastLookupMethod) }} > } label="Automatic" /> } label="Load from RID" /> } label="Manual" /> ) }