Skip to content

Instantly share code, notes, and snippets.

@OmkarK45
Created April 11, 2021 15:54
Show Gist options
  • Save OmkarK45/77fa1f931ef5da70b92169ccd3de620e to your computer and use it in GitHub Desktop.
Save OmkarK45/77fa1f931ef5da70b92169ccd3de620e to your computer and use it in GitHub Desktop.
This will show fancy progress bar on top of your apps :D
/*Here's how to use it*/
import FancyRoute from "./components/Route/Route"
export default function App(){
return (
<Router>
<FancyRoute path="/" component={Home}/>
</Router>
)
}
/* You can customize the color here*/
#nprogress .bar {
background: #b45309;
height: 3px;
}
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