mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-09 20:35:28 +02:00
4 lines
111 B
TypeScript
4 lines
111 B
TypeScript
|
import { createContext } from "react";
|
||
|
|
||
|
export const UserContext = createContext<{ id: string } | null>(null);
|