10 lines
		
	
	
		
			203 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			203 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { AppProps } from 'next/app'
 | |
| 
 | |
| import '../styles/main.scss'
 | |
| 
 | |
| const MyApp = ({ Component, pageProps }: AppProps): JSX.Element => {
 | |
|   return <Component {...pageProps} />
 | |
| }
 | |
| 
 | |
| export default MyApp
 |