Plumile JS API
    Preparing search index...

    Variable LinkConst

    Link: ForwardRefExoticComponent<
        Props<Record<string, unknown>, Record<string, unknown>> & RefAttributes<
            HTMLAnchorElement,
        >,
    > = ...

    Navigation component that provides client-side routing with preloading capabilities.

    This component integrates with the router's RoutingContext to provide smooth navigation with optional preloading of route components and data. It automatically applies active styling when the current route matches the link's destination.

    // Basic usage
    <Link to="/users/123">View Profile</Link>

    // With active styling
    <Link to="/dashboard" activeClassName="active" exact>
    Dashboard
    </Link>

    // With preloading on hover
    <Link to="/heavy-page" preloadOnMouseEnter>
    Heavy Page
    </Link>