8 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import '../styles/globals.css';
 | |
| import type { AppProps } from 'next/app';
 | |
| 
 | |
| function App({ Component, pageProps }: AppProps) {
 | |
|   return <Component {...pageProps} />;
 | |
| }
 | |
| 
 | |
| export default App;
 |