MCPcopy Create free account
hub / github.com/gotify/server / IProps

Interface IProps

ui/src/message/PushMessageDialog.tsx:12–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10import {NumberField} from '../common/NumberField';
11
12interface IProps {
13 appName: string;
14 defaultPriority: number;
15 fClose: VoidFunction;
16 fOnSubmit: (message: string, title: string, priority: number) => Promise<void>;
17}
18
19export const PushMessageDialog = ({appName, defaultPriority, fClose, fOnSubmit}: IProps) => {
20 const [title, setTitle] = useState('');

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…