import React from 'react' import { useLocation, useNavigate } from 'react-router-dom' import { usePageTitleState } from '../../zustand/PageTitleState' const PageTitleComponent = () => { const {PageTitle,setPageTitle} = usePageTitleState() const navigate = useNavigate() const location = useLocation() const handleNavigate = (path:string)=>{ const currentPath = location.pathname ; const newPath = currentPath?.split(path)?.[0] + path ; if(newPath !== currentPath){ navigate(newPath) } } return (