5 lines
185 B
TypeScript
5 lines
185 B
TypeScript
import { createContext } from "react";
|
|
import { NostrSystem, SystemInterface } from "@snort/system";
|
|
|
|
export const SnortContext = createContext<SystemInterface>({} as SystemInterface);
|