> ## Documentation Index
> Fetch the complete documentation index at: https://docs.morph-data.io/llms.txt
> Use this file to discover all available pages before exploring further.

# <Embed />

<Frame>
  <img src="https://mintcdn.com/queue-4c50ebb3/_HQi-05AKdEsS8di/assets/images/pages/embed.jpg?fit=max&auto=format&n=_HQi-05AKdEsS8di&q=85&s=71b357a24f3aa5f6380ead83f621cf96" width="1280" height="720" data-path="assets/images/pages/embed.jpg" />
</Frame>

Embedコンポーネントは、Python関数の実行結果がHTMLの場合に、そのHTMLを表示します。

```tsx theme={"dark"}
<Embed 
  loadData="visualize_py" 
  height={300}
/>
```

## プロパティ

<ParamField path="loadData" type="string" required>
  Python関数やSQLファイルの name
</ParamField>

<ParamField path="variables" type="{ [key: string]: any }">
  Python関数やSQLファイルに渡す変数。 `defineState()`関数 を使って宣言してください。
</ParamField>

<ParamField path="height" type="number">
  テーブルの高さ。単位はpxです。
</ParamField>
