@@ -162,7 +162,7 @@ export interface MemoryRouterOpts {
162162 */
163163 initialEntries ?: InitialEntry [ ] ;
164164 /**
165- * Index of { @link initialEntries} the application should initialize to
165+ * Index of ` initialEntries` the application should initialize to
166166 */
167167 initialIndex ?: number ;
168168 /**
@@ -572,7 +572,7 @@ export interface MemoryRouterProps {
572572 */
573573 initialEntries ?: InitialEntry [ ] ;
574574 /**
575- * Index of { @link initialEntries} the application should initialize to
575+ * Index of ` initialEntries` the application should initialize to
576576 */
577577 initialIndex ?: number ;
578578}
@@ -649,7 +649,7 @@ export interface NavigateProps {
649649 */
650650 state ?: any ;
651651 /**
652- * How to interpret relative routing in the { @link to} prop.
652+ * How to interpret relative routing in the `to` prop.
653653 * See {@link RelativeRoutingType}.
654654 */
655655 relative ?: RelativeRoutingType ;
@@ -814,32 +814,32 @@ export interface PathRouteProps {
814814 children ?: React . ReactNode ;
815815 /**
816816 * The React element to render when this Route matches.
817- * Mutually exclusive with { @link Component} .
817+ * Mutually exclusive with ` Component` .
818818 */
819819 element ?: React . ReactNode | null ;
820820 /**
821821 * The React element to render while this router is loading data.
822- * Mutually exclusive with { @link HydrateFallback} .
822+ * Mutually exclusive with ` HydrateFallback` .
823823 */
824824 hydrateFallbackElement ?: React . ReactNode | null ;
825825 /**
826826 * The React element to render at this route if an error occurs.
827- * Mutually exclusive with { @link ErrorBoundary} .
827+ * Mutually exclusive with ` ErrorBoundary` .
828828 */
829829 errorElement ?: React . ReactNode | null ;
830830 /**
831831 * The React Component to render when this route matches.
832- * Mutually exclusive with { @link element} .
832+ * Mutually exclusive with ` element` .
833833 */
834834 Component ?: React . ComponentType | null ;
835835 /**
836836 * The React Component to render while this router is loading data.
837- * Mutually exclusive with { @link hydrateFallbackElement} .
837+ * Mutually exclusive with ` hydrateFallbackElement` .
838838 */
839839 HydrateFallback ?: React . ComponentType | null ;
840840 /**
841841 * The React Component to render at this route if an error occurs.
842- * Mutually exclusive with { @link errorElement} .
842+ * Mutually exclusive with ` errorElement` .
843843 */
844844 ErrorBoundary ?: React . ComponentType | null ;
845845}
@@ -902,32 +902,32 @@ export interface IndexRouteProps {
902902 children ?: undefined ;
903903 /**
904904 * The React element to render when this Route matches.
905- * Mutually exclusive with { @link Component} .
905+ * Mutually exclusive with ` Component` .
906906 */
907907 element ?: React . ReactNode | null ;
908908 /**
909909 * The React element to render while this router is loading data.
910- * Mutually exclusive with { @link HydrateFallback} .
910+ * Mutually exclusive with ` HydrateFallback` .
911911 */
912912 hydrateFallbackElement ?: React . ReactNode | null ;
913913 /**
914914 * The React element to render at this route if an error occurs.
915- * Mutually exclusive with { @link ErrorBoundary} .
915+ * Mutually exclusive with ` ErrorBoundary` .
916916 */
917917 errorElement ?: React . ReactNode | null ;
918918 /**
919919 * The React Component to render when this route matches.
920- * Mutually exclusive with { @link element} .
920+ * Mutually exclusive with ` element` .
921921 */
922922 Component ?: React . ComponentType | null ;
923923 /**
924924 * The React Component to render while this router is loading data.
925- * Mutually exclusive with { @link hydrateFallbackElement} .
925+ * Mutually exclusive with ` hydrateFallbackElement` .
926926 */
927927 HydrateFallback ?: React . ComponentType | null ;
928928 /**
929929 * The React Component to render at this route if an error occurs.
930- * Mutually exclusive with { @link errorElement} .
930+ * Mutually exclusive with ` errorElement` .
931931 */
932932 ErrorBoundary ?: React . ComponentType | null ;
933933}
0 commit comments