This commit is contained in:
alorig
2025-11-24 06:08:27 +05:00
parent 9ee03f4f7f
commit f255e3c0a0
30 changed files with 185 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
import { Link } from "react-router";
import { Link } from "react-router-dom";
interface BreadcrumbProps {
pageTitle: string;

View File

@@ -1,5 +1,5 @@
import { useEffect } from "react";
import { useLocation } from "react-router";
import { useLocation } from "react-router-dom";
export function ScrollToTop() {
const { pathname } = useLocation();