UNPKG

@sandstack/neuron-devtools

Version:

Devtools for Neuron global state manager. React only.

16 lines (15 loc) 684 B
import { CustomStyles } from './node_modules/neurons'; interface Props { openPanelOnLoad?: boolean; customStyles?: CustomStyles; attachPanelBottom?: boolean; attachPanelTop?: boolean; attachPanelRight?: boolean; attachPanelLeft?: boolean; floatBtnTopRight?: boolean; floatBtnBottomRight?: boolean; floatBtnTopLeft?: boolean; floatBtnBottomLeft?: boolean; } export default function Panel({ openPanelOnLoad, customStyles, attachPanelTop, attachPanelRight, attachPanelBottom, attachPanelLeft, floatBtnTopRight, floatBtnBottomRight, floatBtnTopLeft, floatBtnBottomLeft, }: Props): import('./node_modules/react/jsx-runtime').JSX.Element; export {};