12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
|
import type {
|
||
|
NavigationContainerRef,
|
||
|
ParamListBase,
|
||
|
} from '@react-navigation/core';
|
||
|
|
||
|
export default function useBackButton(
|
||
|
_: React.RefObject<NavigationContainerRef<ParamListBase>>
|
||
|
) {
|
||
|
// No-op
|
||
|
// BackHandler is not available on web
|
||
|
}
|