UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

18 lines (17 loc) 575 B
/** * FootNoteLink module. * @module @massds/mayflower-react/FootNoteLink * @requires module:@massds/mayflower-assets/scss/01-atoms/footnote-link */ import React from 'react'; export interface FootNoteLinkProps { /** Pair the FootNoteLink molecule with the FootNote. The number/index of the footnote item you are referencing. If this is the second footnote on the page, `i` would be 2. */ index?: string; } declare class FootNoteLink extends React.Component<FootNoteLinkProps> { handleScroll(): void; render(): any; } export default FootNoteLink;