import cx from "classnames"; import type { AnchorHTMLAttributes } from "react"; import React from "react"; interface SkipLinkProps extends AnchorHTMLAttributes { href?: string; } const CLASS_ROOT = "skip-link"; const SkipLink: React.FC = ({ href = "#maincontent", className, ...props }) => { const classes = cx(CLASS_ROOT, className); return ( Preskočiť na hlavný obsah ); }; SkipLink.displayName = "SkipLink"; export { SkipLink };