mirror of
https://github.com/status-im/status-web.git
synced 2025-01-12 05:34:39 +00:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
|
import '../styles.css'
|
||
|
|
||
|
import type { AppProps } from 'next/app'
|
||
|
|
||
|
function App({ Component, pageProps }: AppProps) {
|
||
|
return <Component {...pageProps} />
|
||
|
}
|
||
|
|
||
|
export default App
|