UNPKG

preact-material-components

Version:
16 lines (10 loc) 353 B
import * as preact from 'preact'; import { Link as StaticLink, RoutableProps } from './'; export class Match extends preact.Component<RoutableProps, {}> { render(): preact.VNode; } export interface LinkProps extends JSX.HTMLAttributes { activeClassName: string; } export function Link(props: LinkProps): preact.VNode; export default Match;