plane/apps/www/pages/_app.tsx

17 lines
364 B
TypeScript
Raw Normal View History

2022-12-20 19:26:19 +00:00
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 />
</>
);
}