/[sudobot]/branches/8.x/docs/components/Navigation/Progress.tsx
ViewVC logotype

Contents of /branches/8.x/docs/components/Navigation/Progress.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 395 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 "use client";
2 import { useRouterContext } from "@/contexts/RouterContext";
3 import { LinearProgress } from "@mui/material";
4
5 export default function Progress() {
6 const { isChanging } = useRouterContext();
7
8 if (!isChanging) {
9 return <></>;
10 }
11
12 return (
13 <div className="fixed top-0 left-0 w-[100vw] z-[100000]">
14 <LinearProgress />
15 </div>
16 );
17 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26