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

Interface IProps

ui/src/application/AddApplicationDialog.tsx:12–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10import React, {useState} from 'react';
11
12interface IProps {
13 fClose: VoidFunction;
14 fOnSubmit: (name: string, description: string, defaultPriority: number) => Promise<void>;
15}
16
17export const AddApplicationDialog = ({fClose, fOnSubmit}: IProps) => {
18 const [name, setName] = 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…