This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {} | |
} |