dgate 2.1.0

DGate API Gateway - High-performance API gateway with JavaScript module support
Documentation
# @chakra-ui/editable

EditableText is used for inline renaming of some text. It appears as normal UI
text but transforms into a text input field when the user clicks or focuses on
it.

## Installation

```sh
yarn add @chakra-ui/editable

# or

npm i @chakra-ui/editable
```

## Import component

```js
import { Editable, EditableInput, EditablePreview } from "@chakra-ui/react"
```

## Usage

```jsx
<Editable defaultValue="Take some chakra">
  <EditablePreview />
  <EditableInput />
</Editable>
```