LazyContext.mjs 133 B

123456
  1. "use client";
  2. import { createContext } from 'react';
  3. const LazyContext = createContext({ strict: false });
  4. export { LazyContext };