Skip to content

Instantly share code, notes, and snippets.

@jorngeorg
jorngeorg / _app.js
Created May 24, 2018 11:58
Initial load and store
import App, {Container} from 'next/app'
import React from 'react'
const isServer = typeof window === 'undefined'
const clientStore = isServer ? null : {}
// mock of your actual data fetching solution
async function someFetch() {
return {}
}