@@ -162,7 +162,7 @@ export interface MemoryRouterOpts {
162
162
*/
163
163
initialEntries ?: InitialEntry [ ] ;
164
164
/**
165
- * Index of { @link initialEntries} the application should initialize to
165
+ * Index of ` initialEntries` the application should initialize to
166
166
*/
167
167
initialIndex ?: number ;
168
168
/**
@@ -572,7 +572,7 @@ export interface MemoryRouterProps {
572
572
*/
573
573
initialEntries ?: InitialEntry [ ] ;
574
574
/**
575
- * Index of { @link initialEntries} the application should initialize to
575
+ * Index of ` initialEntries` the application should initialize to
576
576
*/
577
577
initialIndex ?: number ;
578
578
}
@@ -649,7 +649,7 @@ export interface NavigateProps {
649
649
*/
650
650
state ?: any ;
651
651
/**
652
- * How to interpret relative routing in the { @link to} prop.
652
+ * How to interpret relative routing in the `to` prop.
653
653
* See {@link RelativeRoutingType}.
654
654
*/
655
655
relative ?: RelativeRoutingType ;
@@ -814,32 +814,32 @@ export interface PathRouteProps {
814
814
children ?: React . ReactNode ;
815
815
/**
816
816
* The React element to render when this Route matches.
817
- * Mutually exclusive with { @link Component} .
817
+ * Mutually exclusive with ` Component` .
818
818
*/
819
819
element ?: React . ReactNode | null ;
820
820
/**
821
821
* The React element to render while this router is loading data.
822
- * Mutually exclusive with { @link HydrateFallback} .
822
+ * Mutually exclusive with ` HydrateFallback` .
823
823
*/
824
824
hydrateFallbackElement ?: React . ReactNode | null ;
825
825
/**
826
826
* The React element to render at this route if an error occurs.
827
- * Mutually exclusive with { @link ErrorBoundary} .
827
+ * Mutually exclusive with ` ErrorBoundary` .
828
828
*/
829
829
errorElement ?: React . ReactNode | null ;
830
830
/**
831
831
* The React Component to render when this route matches.
832
- * Mutually exclusive with { @link element} .
832
+ * Mutually exclusive with ` element` .
833
833
*/
834
834
Component ?: React . ComponentType | null ;
835
835
/**
836
836
* The React Component to render while this router is loading data.
837
- * Mutually exclusive with { @link hydrateFallbackElement} .
837
+ * Mutually exclusive with ` hydrateFallbackElement` .
838
838
*/
839
839
HydrateFallback ?: React . ComponentType | null ;
840
840
/**
841
841
* The React Component to render at this route if an error occurs.
842
- * Mutually exclusive with { @link errorElement} .
842
+ * Mutually exclusive with ` errorElement` .
843
843
*/
844
844
ErrorBoundary ?: React . ComponentType | null ;
845
845
}
@@ -902,32 +902,32 @@ export interface IndexRouteProps {
902
902
children ?: undefined ;
903
903
/**
904
904
* The React element to render when this Route matches.
905
- * Mutually exclusive with { @link Component} .
905
+ * Mutually exclusive with ` Component` .
906
906
*/
907
907
element ?: React . ReactNode | null ;
908
908
/**
909
909
* The React element to render while this router is loading data.
910
- * Mutually exclusive with { @link HydrateFallback} .
910
+ * Mutually exclusive with ` HydrateFallback` .
911
911
*/
912
912
hydrateFallbackElement ?: React . ReactNode | null ;
913
913
/**
914
914
* The React element to render at this route if an error occurs.
915
- * Mutually exclusive with { @link ErrorBoundary} .
915
+ * Mutually exclusive with ` ErrorBoundary` .
916
916
*/
917
917
errorElement ?: React . ReactNode | null ;
918
918
/**
919
919
* The React Component to render when this route matches.
920
- * Mutually exclusive with { @link element} .
920
+ * Mutually exclusive with ` element` .
921
921
*/
922
922
Component ?: React . ComponentType | null ;
923
923
/**
924
924
* The React Component to render while this router is loading data.
925
- * Mutually exclusive with { @link hydrateFallbackElement} .
925
+ * Mutually exclusive with ` hydrateFallbackElement` .
926
926
*/
927
927
HydrateFallback ?: React . ComponentType | null ;
928
928
/**
929
929
* The React Component to render at this route if an error occurs.
930
- * Mutually exclusive with { @link errorElement} .
930
+ * Mutually exclusive with ` errorElement` .
931
931
*/
932
932
ErrorBoundary ?: React . ComponentType | null ;
933
933
}
0 commit comments