mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-04-07 02:53:38 +00:00
5 lines
175 B
TypeScript
5 lines
175 B
TypeScript
import { createContext } from "react";
|
|
import type { AhrimanClient } from "api/client/AhrimanClient";
|
|
|
|
export const ClientContext = createContext<AhrimanClient | null>(null);
|