import { Input } from "@nextui-org/react"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; interface BaseUrlInputProps { isDisabled: boolean; defaultValue: string; } export function BaseUrlInput({ isDisabled, defaultValue }: BaseUrlInputProps) { const { t } = useTranslation(); return (
); }