UNPKG

jsx-view

Version:

Minimal JSX for HTML DOM tightly integrated with RxJS. TypeScript definitions, and attributes can be assigned to observables.

9 lines (6 loc) 155 B
export interface Context<T> { readonly defaultValue: T; } export function createContext<T>(defaultValue: T): Context<T> { return { defaultValue }; }