mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-21 16:50:02 +02:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export const WebSettingsContext = createContext<Record<string, WebSetting>>({});
|
|
|
|
export type WebSetting = {
|
|
displayName: string;
|
|
index: number;
|
|
};
|