@sb1/ffe-account-selector-react
Version:
Selector for bank accounts with autocomplete.
21 lines (18 loc) • 432 B
JavaScript
;
/*
import React from 'react';
import { Locale } from '../types';
import { texts } from '../i18n/texts';
interface AccountNoMatchProps {
value?: string;
locale: Locale;
}
export const AccountNoMatch: React.FC<AccountNoMatchProps> = ({
value,
locale,
}) => (
<div className="ffe-account-suggestion-multi__nomatches">
<span>{value || texts[locale].NO_ACCOUNTS_FOUND}</span>
</div>
);
*/