react-chakra-editable-label
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

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 display
  • onSave 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);
                }}
            />
    );
}

Package Sidebar

Install

npm i react-chakra-editable-label

Weekly Downloads

2

Version

1.0.8

License

MIT

Unpacked Size

4.5 kB

Total Files

13

Last publish

Collaborators

  • amanuela97