MCPcopy Create free account
hub / github.com/AmazingAng/PolyWorld / AlertManager

Function AlertManager

src/components/AlertManager.tsx:45–51  ·  view source on GitHub ↗
({
  prefill,
  ...props
}: AlertManagerProps)

Source from the content-addressed store, hash-verified

43type Tab = "alerts" | "settings";
44
45export default function AlertManager({
46 prefill,
47 ...props
48}: AlertManagerProps) {
49 const prefillKey = prefill?.marketId ?? "none";
50 return <AlertManagerContent key={prefillKey} prefill={prefill} {...props} />;
51}
52
53function AlertManagerContent({
54 open,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected