React
With Memo
Used to wrap your Progress component with a memo to optimize performance
import { withMemo } from '@bprogress/react';
function withMemo<P extends {
memo?: boolean;
shouldCompareComplexProps?: boolean;
}>(Component: React.ComponentType<P>, ignoreKeys?: string[]): React.MemoExoticComponent<React.ComponentType<P>>;