react-code-dataset / next.js /packages /next /src /shared /lib /loadable-context.shared-runtime.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
'use client'
import React from 'react'
type CaptureFn = (moduleName: string) => void
export const LoadableContext = React.createContext<CaptureFn | null>(null)
if (process.env.NODE_ENV !== 'production') {
LoadableContext.displayName = 'LoadableContext'
}