UNPKG

@sandstack/neuron-devtools

Version:

Devtools for Neuron global state manager. React only.

12 lines (11 loc) 427 B
import { CustomStyles } from '../../../neurons'; interface Props { openPanelOnLoad?: boolean; customStyles?: CustomStyles; attachPanelBottom?: boolean; attachPanelTop?: boolean; attachPanelLeft?: boolean; attachPanelRight?: boolean; } export default function PanelOptions({ openPanelOnLoad, customStyles, attachPanelBottom, attachPanelTop, attachPanelLeft, attachPanelRight, }: Props): null; export {};