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

Interface IProps

ui/src/client/UpdateClientDialog.tsx:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9import Tooltip from '@mui/material/Tooltip';
10
11interface IProps {
12 fClose: VoidFunction;
13 fOnSubmit: (name: string) => Promise<void>;
14 initialName: string;
15}
16
17const UpdateClientDialog = ({fClose, fOnSubmit, initialName = ''}: IProps) => {
18 const [name, setName] = useState(initialName);

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…