We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe530a commit e11c82aCopy full SHA for e11c82a
client/components/SkipLink.tsx
@@ -2,10 +2,10 @@ import React, { useState } from 'react';
2
import classNames from 'classnames';
3
import { useTranslation } from 'react-i18next';
4
5
-type SkipLinkProps = {
+interface SkipLinkProps {
6
targetId: string;
7
text: string;
8
-};
+}
9
10
const SkipLink = ({ targetId, text }: SkipLinkProps) => {
11
const [focus, setFocus] = useState(false);
0 commit comments