mirror of
https://github.com/ershisan99/todolist_next.git
synced 2025-12-17 20:59:25 +00:00
lint and format
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import "../styles/globals.css";
|
||||
import "../styles/globals.css"
|
||||
|
||||
import { QueryClientProvider, QueryClient } from "@tanstack/react-query";
|
||||
import { type AppType } from "next/dist/shared/lib/utils";
|
||||
import { QueryClientProvider, QueryClient } from "@tanstack/react-query"
|
||||
import type { AppType } from "next/dist/shared/lib/utils"
|
||||
|
||||
import { AuthRedirect } from "@/components";
|
||||
import { AuthRedirect } from "@/components"
|
||||
|
||||
const queryClient = new QueryClient();
|
||||
const queryClient = new QueryClient()
|
||||
|
||||
const MyApp: AppType = ({ Component, pageProps }) => {
|
||||
return (
|
||||
@@ -14,7 +14,7 @@ const MyApp: AppType = ({ Component, pageProps }) => {
|
||||
<Component {...pageProps} />
|
||||
</AuthRedirect>
|
||||
</QueryClientProvider>
|
||||
);
|
||||
};
|
||||
)
|
||||
}
|
||||
|
||||
export default MyApp;
|
||||
export default MyApp
|
||||
|
||||
Reference in New Issue
Block a user