# `Kino.ETS`
[🔗](https://github.com/livebook-dev/kino/blob/v0.19.0/lib/kino/ets.ex#L1)

A kino for interactively viewing an ETS table.

## Examples

    tid = :ets.new(:users, [:set, :public])
    Kino.ETS.new(tid)

    Kino.ETS.new(:elixir_config)

# `t`

```elixir
@type t() :: Kino.Table.t()
```

# `new`

```elixir
@spec new(:ets.tid()) :: t()
```

Creates a new kino displaying the given ETS table.

Note that private tables cannot be read by an arbitrary process,
so the given table must have either public or protected access.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
