digital-gardeners/pages/_app.js

7 lines
138 B
JavaScript
Raw Normal View History

2021-09-05 16:37:21 +02:00
import '../styles/tailwind.css'
function MyApp({Component, pageProps}) {
return <Component {...pageProps} />
}
export default MyApp;