# Data Dump

The DataDump component is used when developing to nicely format data for
debugging purposes.

## Design & usage guidelines

DataDump should not be used in a production environment to show information to
users.


## Props

### Web

| Prop | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `data` | `unknown` | Yes | — | Data to display. |
| `defaultOpen` | `boolean` | No | `false` | Should the `DataDump` default to open? |
| `label` | `string` | No | `"Raw Data"` | Label for the DataDump |
