MCPcopy Create free account
hub / github.com/sourcebot-dev/sourcebot / ProgressBarProvider

Function ProgressBarProvider

packages/web/src/app/progressBarProvider.tsx:5–19  ·  view source on GitHub ↗
({ children }: { children: React.ReactNode })

Source from the content-addressed store, hash-verified

3import { ProgressProvider } from '@bprogress/next/app';
4
5export const ProgressBarProvider = ({ children }: { children: React.ReactNode }) => {
6 return (
7 <ProgressProvider
8 color="var(--highlight)"
9 height="2px"
10 options={{
11 showSpinner: false
12 }}
13 delay={300}
14 shallowRouting
15 >
16 {children}
17 </ProgressProvider>
18 );
19};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected