mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
16 lines
283 B
JavaScript
16 lines
283 B
JavaScript
import React from 'react'
|
|
|
|
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>
|
|
)
|
|
}
|