8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
|
import 'tailwindcss/tailwind.css'
|
||
|
|
||
|
function MyApp({ Component, pageProps }) {
|
||
|
return <Component {...pageProps} />
|
||
|
}
|
||
|
|
||
|
export default MyApp
|