UNPKG

@uehreka/gatsby-plugin-anchor-links

Version:

Gatsby plugin for using anchor links with a Gatsby Link component (this one supports gatsby-plugin-transition-link).

11 lines (9 loc) 237 B
import * as React from 'react' export interface AnchorLinkProps { to: string title?: string className?: string stripHash?: boolean children?: React.ReactNode } export function AnchorLink(props: AnchorLinkProps): any