appStore was a stupid idea...

This commit is contained in:
Thomas Ruoff
2020-08-22 00:04:47 +02:00
parent 06f11e4e6d
commit 826ea43363
6 changed files with 74 additions and 35 deletions

View File

@@ -4,12 +4,6 @@ import '../styles/index.css'
import 'react-day-picker/lib/style.css'
import AppStore from '../context/appStore'
export default function MyApp({ Component, pageProps }) {
return (
<AppStore>
<Component {...pageProps} />
</AppStore>
)
return <Component {...pageProps} />
}