UNPKG

gatsby-plugin-anchor-links

Version:

Gatsby plugin for using anchor links with a Gatsby Link component.

13 lines (11 loc) 301 B
import * as React from 'react' export interface AnchorLinkProps { to: string title?: string className?: string stripHash?: boolean children?: React.ReactNode gatsbyLinkProps?: object onAnchorLinkClick?: () => void } export function AnchorLink(props: AnchorLinkProps): any