import useSWR, { useSWRConfig } from 'swr' export default function Page({ foo }) { const { data } = useSWR('hello', (v) => v, { fallbackData: 'hello' }) useSWRConfig() // call SWR context return