MCPcopy Create free account
hub / github.com/stackblitz/bolt.new / DialogProps

Interface DialogProps

app/components/ui/Dialog.tsx:95–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93});
94
95interface DialogProps {
96 children: ReactNode | ReactNode[];
97 className?: string;
98 onBackdrop?: (event: React.UIEvent) => void;
99 onClose?: (event: React.UIEvent) => void;
100}
101
102export const Dialog = memo(({ className, children, onBackdrop, onClose }: DialogProps) => {
103 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected