UNPKG

grommet

Version:

focus on the essential experience

13 lines (9 loc) 320 B
import * as React from "react"; import { AnchorProps } from "../Anchor"; import { Omit } from "../../utils"; export interface RoutedAnchorProps { path: string; method?: "push" | "replace"; } declare const RoutedAnchor: React.ComponentClass<RoutedAnchorProps & Omit<AnchorProps, "href">>; export { RoutedAnchor };