import { useContext } from "react"; export const UseContext = ({ context, cref }: { context: React.Context, cref: (context: T) => void }) => { const ctx = useContext(context); cref(ctx); return null; }