mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 10:53:51 +00:00
6c6f5c2c0f
feat: locked presets refactor: simplify locked param refactor: create share links
5 lines
160 B
TypeScript
5 lines
160 B
TypeScript
import { createContext } from 'react';
|
|
import { URLPreset } from 'ontime-types';
|
|
|
|
export const PresetContext = createContext<URLPreset | undefined>(undefined);
|