9 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { AppProps } from "next/app";
 | |
| 
 | |
| import "@/css/tailwind.css";
 | |
| 
 | |
| function App({ Component, pageProps }: AppProps) {
 | |
|   return <Component {...pageProps} />;
 | |
| }
 | |
| 
 | |
| export default App;
 |