@reatom/devtools
Version:
Reatom developer tools for states and actions inspecting
12 lines • 399 B
TypeScript
import { Ctx, Atom } from '@reatom/framework';
import { JSX } from './jsx';
import { getColor } from './utils';
export type Props = {
clientCtx: Ctx;
getColor: typeof getColor;
width: Atom<string>;
height: Atom<string>;
initSize: number;
};
export declare const Graph: ({ clientCtx, getColor, width, height, initSize, }: Props) => JSX.Element;
//# sourceMappingURL=Graph.d.ts.map