mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-22 09:10:01 +02:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import { createContext } from "react";
|
|
|
|
export const WebSettingsContext = createContext<Record<string, WebSetting>>({});
|
|
|
|
export interface WebSetting {
|
|
displayName: string;
|
|
display: boolean;
|
|
index: number;
|
|
}
|