mirror of
https://github.com/evgen-app/lending-next.git
synced 2024-11-10 17:36:32 +03:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import '../styles/globals.css'
|
|
import type { AppProps } from 'next/app'
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />
|
|
}
|
|
|
|
export default MyApp
|