mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-12 00:04:52 +01:00
11 lines
419 B
JavaScript
11 lines
419 B
JavaScript
import wrapPageElementWithStyles from './src/helpers/wrapPageElement'
|
|
import wrapRootElementWithProviders from './src/helpers/wrapRootElement'
|
|
|
|
export const wrapPageElement = wrapPageElementWithStyles
|
|
export const wrapRootElement = wrapRootElementWithProviders
|
|
|
|
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
|
|
if (typeof window.IntersectionObserver === 'undefined') {
|
|
import('intersection-observer')
|
|
}
|