import { useState } from "react";
import { Playground, Props } from "@slytrunk/docs";
import EmbedInput from "./EmbedInput";

# EmbedInput

<Props of={EmbedInput} />

## Usage

<Playground>
  {() => {
    const [value, setValue] = useState("");
    return <EmbedInput onChange={(text) => setValue(text)} value={value} />;
  }}
</Playground>
