使用法
import { SandBox } from '@wordpress/components';
const MySandBox = () => (
<SandBox html="<p>Content</p>" title="SandBox" type="embed" />
);
プロパティ
html: string
iframe ドキュメントのボディにレンダリングする HTML。
onFocus: React.DOMAttributes< HTMLIFrameElement >[ ‘onFocus’ ]
iframe の onFocus
コールバック。
scripts: string[]
iframe ドキュメントの <body>
の下部に <script>
タグとして注入するスクリプト URL の配列。
styles: string[]
iframe ドキュメントの <head>
に注入する CSS 文字列の配列。
title: string
iframe ドキュメントの <title>
。
type: string
iframe の <html>
および <body>
要素に適用する CSS クラス名。
tabIndex: HTMLElement[ ‘tabIndex’ ]
iframe が受け取る tabindex
。
- 必須: いいえ