Migrate components to eslint

This commit is contained in:
Chris Svenningsen 2020-09-11 17:46:52 -07:00 committed by Josh Perez
parent de66486e41
commit b13dbcfa77
69 changed files with 875 additions and 800 deletions

View file

@ -10,6 +10,7 @@ type PropsType = {
export const InContactsIcon = (props: PropsType): JSX.Element => {
const { i18n } = props;
/* eslint-disable jsx-a11y/no-noninteractive-tabindex */
return (
<Tooltip
tagName="span"
@ -28,4 +29,5 @@ export const InContactsIcon = (props: PropsType): JSX.Element => {
/>
</Tooltip>
);
/* eslint-enable jsx-a11y/no-noninteractive-tabindex */
};