1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-30 05:41:41 +02:00
market/gatsby-browser.js

11 lines
419 B
JavaScript
Raw Normal View History

2020-06-30 13:39:48 +02:00
import wrapPageElementWithStyles from './src/helpers/wrapPageElement'
2020-07-01 18:57:10 +02:00
import wrapRootElementWithProviders from './src/helpers/wrapRootElement'
2020-06-30 13:39:48 +02:00
export const wrapPageElement = wrapPageElementWithStyles
2020-07-01 18:57:10 +02:00
export const wrapRootElement = wrapRootElementWithProviders
2020-06-30 13:39:48 +02:00
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
if (typeof window.IntersectionObserver === 'undefined') {
import('intersection-observer')
}