Props of the Link component.

interface LinkProps {
    isPrefetched?: boolean;
    isReplace?: boolean;
    to: To;
}

Hierarchy

Properties

isPrefetched?: boolean

If true then link prefetches a route location and its data.

false
isReplace?: boolean

If true then link replaces the current history entry, otherwise link pushes an entry.

false
to: To

A location or route to navigate to when link is clicked.