react-chakra-editable-label
v1.0.8
Published
A react label component that is editable and uses Chakra UI
Downloads
2
Readme
react-chakra-editable-label
A library that allows you to switch between a text label and an input field. The library utlizes Chakara UI under the hood.
Table of Contents
Installation
$ npm install react-chakra-editable-label
$ yarn add react-chakra-editable-label
Usage
The react-chakra-editable-label
object requires two props:
text
which is the initial text to displayonSave
which is the function called when the is updated.
Example:
import React from 'react';
import { EditableLabel } from 'react-chakra-editable-label';
const App = () => {
return (
<EditableLabel
text='World'
onSave={value => {
console.log(value);
}}
/>
);
}