UNPKG

@dabapps/roe

Version:

A Collection of React Components for Project Development

11 lines (10 loc) 388 B
/// <reference types="react" /> import { HTMLProps, PureComponent } from 'react'; export declare type AnchorProps = HTMLProps<HTMLElement>; /** * Link component that automatically creates an id and hash href that match, for linking to elements on a single page. */ export declare class Anchor extends PureComponent<AnchorProps, {}> { render(): JSX.Element; } export default Anchor;