@micro-router
    Preparing search index...
    • Render an <a> tag that links to the provided path with client-side navigation.

      This component will require the data for the desired path to be provided so that the actual URL can be constructed.

      If the data is an object whose keys do not conflict with the normal props of the <Link> component, then they will be allowed as inline props:

       <Link to={MessagePath} messageId="123">...</Link>
      

      Regardless, you are also allowed to specify the path data via a data prop:

      <Link to={MessageRefPath} data={{messageId: "123", ref: "not-a-react-ref"}}>
      

      Type Parameters

      • P extends string | Path<string, any>

      Parameters

      Returns Element