You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The `head` prop is a dom node that gets inserted before the children of the frame.
11
+
*/
9
12
head?: React.ReactNode;
13
+
/**
14
+
* The `initialContent` props is the initial html injected into frame.
15
+
* It is only injected once,
16
+
* but allows you to insert any html into the frame (e.g. a [`<head>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head) tag, [`<script>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script) tags, etc).
17
+
* Note that it does not update if you change the prop.
18
+
*
19
+
* Defaults to `<!DOCTYPE html><html><head></head><body></body></html>`
20
+
*/
10
21
initialContent?: string;
22
+
/**
23
+
* The `mountTarget` attribute is a css selector (`#target`/`.target`) that specifies the child within the initial content of the iframe to be mounted.
0 commit comments