mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
prettier all the things
This commit is contained in:
committed by
Thomas Ruoff
parent
c35d3009c6
commit
36f8719531
@@ -1,6 +1,6 @@
|
||||
import { useEffect } from 'react';
|
||||
import { useEffect } from 'react'
|
||||
|
||||
import { useSession, signIn, SessionProvider } from "next-auth/react"
|
||||
import { useSession, signIn, SessionProvider } from 'next-auth/react'
|
||||
import '../styles/index.css'
|
||||
|
||||
function Auth({ children }) {
|
||||
@@ -21,8 +21,10 @@ function Auth({ children }) {
|
||||
return <div>Loading...</div>
|
||||
}
|
||||
|
||||
export default function MyApp({ Component, pageProps: { session, ...pageProps } }) {
|
||||
|
||||
export default function MyApp({
|
||||
Component,
|
||||
pageProps: { session, ...pageProps },
|
||||
}) {
|
||||
return (
|
||||
<div className="flex flex-col min-h-screen">
|
||||
<SessionProvider session={session}>
|
||||
@@ -37,4 +39,3 @@ export default function MyApp({ Component, pageProps: { session, ...pageProps }
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user