opds-web-client
Version:
10 lines (9 loc) • 331 B
TypeScript
import * as React from "react";
export interface SkipNavigationLinkProps extends React.HTMLProps<SkipNavigationLink> {
target: string;
label?: string;
}
/** Link to skip to main content for a11y. */
export default class SkipNavigationLink extends React.Component<SkipNavigationLinkProps, {}> {
render(): JSX.Element;
}