File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 8
8
*/
9
9
export { useCurrentStateAndParams } from './useCurrentStateAndParams' ;
10
10
export { useOnStateChanged } from './useOnStateChanged' ;
11
+ export { useParentView } from './useParentView' ;
11
12
export { useRouter } from './useRouter' ;
12
13
export { useSref } from './useSref' ;
13
14
export { useSrefActive } from './useSrefActive' ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { useContext, useMemo } from 'react';
4
4
import { UIViewAddress , UIViewContext } from '../components' ;
5
5
import { useRouter } from './useRouter' ;
6
6
7
- /** Gets the parent UIViewAddress from context, or the root UIViewAddress */
7
+ /** @internalapi Gets the parent UIViewAddress from context, or the root UIViewAddress */
8
8
export function useParentView ( ) : UIViewAddress {
9
9
const router = useRouter ( ) ;
10
10
const parentUIViewContext : UIViewAddress = useContext ( UIViewContext ) ;
You can’t perform that action at this time.
0 commit comments