blob: 136b8cb3f4bcf68319be43ef217cf19e5330b780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import '../styles/globals.css';
import NextProgress from "next-progress";
import { ToastContainer, Slide } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
function MyApp({ Component, pageProps }) {
return (
<>
<ToastContainer
position='top-center'
autoClose={5000}
theme='light'
closeOnClick={false}
transition={Slide}
limit={1}
/>
<NextProgress color="#D7A30A" options={{
showSpinner: false,
}} />
<Component {...pageProps} />
</>
)
}
export default MyApp
|