@@ -135,7 +135,7 @@ interface DOMRouterOpts {
135
135
}
136
136
137
137
/**
138
- * @category Routers
138
+ * @category Data Routers
139
139
*/
140
140
export function createBrowserRouter (
141
141
routes : RouteObject [ ] ,
@@ -155,7 +155,7 @@ export function createBrowserRouter(
155
155
}
156
156
157
157
/**
158
- * @category Routers
158
+ * @category Data Routers
159
159
*/
160
160
export function createHashRouter (
161
161
routes : RouteObject [ ] ,
@@ -251,7 +251,7 @@ export interface BrowserRouterProps {
251
251
/**
252
252
* A `<Router>` for use in web browsers. Provides the cleanest URLs.
253
253
*
254
- * @category Router Components
254
+ * @category Component Routers
255
255
*/
256
256
export function BrowserRouter ( {
257
257
basename,
@@ -301,7 +301,7 @@ export interface HashRouterProps {
301
301
* A `<Router>` for use in web browsers. Stores the location in the hash
302
302
* portion of the URL so it is not sent to the server.
303
303
*
304
- * @category Router Components
304
+ * @category Component Routers
305
305
*/
306
306
export function HashRouter ( { basename, children, window } : HashRouterProps ) {
307
307
let historyRef = React . useRef < HashHistory > ( ) ;
@@ -350,7 +350,7 @@ export interface HistoryRouterProps {
350
350
* version of the history library that React Router uses internally.
351
351
*
352
352
* @name unstable_HistoryRouter
353
- * @category Router Components
353
+ * @category Component Routers
354
354
*/
355
355
export function HistoryRouter ( {
356
356
basename,
0 commit comments