```bash npm install --save editable-text-label # or yarn add editable-text-label ```
npm install editable-text-label is a small React component which provides _inline editing_ by click on it's text label.
``bash`
npm install --save editable-text-labelor
yarn add editable-text-label
`js
import React from 'react'
import { EditableLabel } from 'editable-text-label'
export const example = () => {
const value = 'Default value'
const onChange = v =>
console.log('Entered text: ', v)
return
inputSize={5} />
}
`
> You can run a demo locally by clonning the project and running yarn install && yarn start` command.