mirror of
https://github.com/gregberge/loadable-components.git
synced 2026-01-18 15:12:26 +00:00
7 lines
256 B
JavaScript
7 lines
256 B
JavaScript
export { invariant } from './util'
|
|
export { default as Context } from './Context'
|
|
const LOADABLE_REQUIRED_CHUNKS_KEY = '__LOADABLE_REQUIRED_CHUNKS__'
|
|
export function getRequiredChunkKey(namespace) {
|
|
return `${namespace}${LOADABLE_REQUIRED_CHUNKS_KEY}`
|
|
}
|