forked from github/plane
17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
import type { AppProps } from "next/app";
|
|
// n-progress
|
|
import NProgress from "@components/nprogress";
|
|
// axios configuration
|
|
import "@configuration/axios-configuration";
|
|
// styles
|
|
import "@styles/global.css"
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Component {...pageProps} />
|
|
<NProgress />
|
|
</>
|
|
);
|
|
}
|