Created
April 11, 2021 15:54
-
-
Save OmkarK45/77fa1f931ef5da70b92169ccd3de620e to your computer and use it in GitHub Desktop.
This will show fancy progress bar on top of your apps :D
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Here's how to use it*/ | |
import FancyRoute from "./components/Route/Route" | |
export default function App(){ | |
return ( | |
<Router> | |
<FancyRoute path="/" component={Home}/> | |
</Router> | |
) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* You can customize the color here*/ | |
#nprogress .bar { | |
background: #b45309; | |
height: 3px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "nprogress/nprogress.css" | |
import "./routeStyles.css" | |
import nprogress from "nprogress" | |
import { useEffect, useState } from "react" | |
import { Route } from "react-router-dom" | |
export default function FancyRoute(props) { | |
useState(nprogress.start()) | |
useEffect(() => { | |
nprogress.done() | |
return () => nprogress.start() | |
}) | |
return <Route {...props} /> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment