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