6 lines
119 B
JavaScript
6 lines
119 B
JavaScript
|
import { createContext } from 'react';
|
||
|
|
||
|
const LazyContext = createContext({ strict: false });
|
||
|
|
||
|
export { LazyContext };
|