import { Button } from './Button'; import { DropdownMenuRadio } from './Dropdown'; import { IconButton } from './IconButton'; import { Input } from './Input'; interface Props { sendRequest: () => void; loading: boolean; method: string; url: string; onMethodChange: (method: string) => void; onUrlChange: (url: string) => void; } export function UrlBar({ sendRequest, loading, onMethodChange, method, onUrlChange, url }: Props) { return (
); }