blob: 7950628ef539ab86c21ba063351c14ff85f122f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import '../styles/globals.css';
import NextProgress from "next-progress";
function MyApp({ Component, pageProps }) {
return (
<>
<NextProgress color="#D7A30A" options={{
showSpinner: false,
}} />
<Component {...pageProps} />
</>
)
}
export default MyApp
|