MCPcopy
hub / github.com/ryanseddon/react-frame-component / FrameComponentProps

Interface FrameComponentProps

index.d.ts:4–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2 import * as React from 'react';
3
4 export interface FrameComponentProps
5 extends React.IframeHTMLAttributes<HTMLIFrameElement>,
6 React.RefAttributes<HTMLIFrameElement> {
7 head?: React.ReactNode | undefined;
8 mountTarget?: string | undefined;
9 initialContent?: string | undefined;
10 contentDidMount?: (() => void) | undefined;
11 contentDidUpdate?: (() => void) | undefined;
12 dangerouslyUseDocWrite?: boolean | undefined;
13 children: React.ReactNode;
14 }
15
16 const FrameComponent: React.ForwardRefExoticComponent<FrameComponentProps>;
17 export default FrameComponent;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected