7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
|
import { useLocation } from "react-router-dom";
|
||
|
|
||
|
export function useShouldShowPtt() {
|
||
|
const { hash } = useLocation();
|
||
|
return hash.startsWith("#ptt");
|
||
|
}
|