react-signify
Version:
A JS library for predictable and maintainable global state management
12 lines (9 loc) • 302 B
TypeScript
import * as react from 'react';
import * as react_jsx_runtime from 'react/jsx-runtime';
type TDevtool = {
name: string;
color?: string;
item: any;
};
declare const DevTool: react.MemoExoticComponent<({ name, color, item }: TDevtool) => react_jsx_runtime.JSX.Element>;
export { DevTool };