introduce jsx files

This commit is contained in:
Thomas Ruoff
2020-08-26 22:17:25 +02:00
committed by Thomas Ruoff
parent 2921cee220
commit 7ca2322717
14 changed files with 0 additions and 0 deletions

9
pages/_app.jsx Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react'
import '../styles/index.css'
import 'react-day-picker/lib/style.css'
export default function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}