element-call/src/useShouldShowPtt.js
2022-05-03 10:32:06 -07:00

6 lines
156 B
JavaScript

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