We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c54d58c commit cb8a9adCopy full SHA for cb8a9ad
src/pages/Vip/index.tsx
@@ -3,7 +3,6 @@ import { useNavigate } from "react-router-dom";
3
4
import Menu from '../../components/Menu';
5
import "./index.css";
6
-import { useNavigate } from 'react-router-dom';
7
8
const Vip = () => {
9
const [isMenuVisible, setIsMenuVisible] = useState<boolean>(false)
@@ -13,7 +12,6 @@ const Vip = () => {
13
12
const toggleMenu = () => {
14
setIsMenuVisible(prevState => !prevState);
15
}
16
- const navigate = useNavigate();
17
18
return (
19
<>
0 commit comments