11 lines
164 B
JavaScript
11 lines
164 B
JavaScript
|
|
"use client";
|
||
|
|
import { createContext } from 'react';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @public
|
||
|
|
*/
|
||
|
|
const PresenceContext =
|
||
|
|
/* @__PURE__ */ createContext(null);
|
||
|
|
|
||
|
|
export { PresenceContext };
|