Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 762 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 762 Bytes

backstage-text-input

Backstage React text field component

Build Status

Installing

$ npm install backstage-text-field --save

Development/Contributing

Clone the project to your local machine, go to the root dir and run:

$ npm i
$ npm run demo

You should see Listening at localhost:8080 in your terminal. Open a browser window and check http://localhost:8080/demo.

Examples

import React from 'react';
import { render } from 'react-dom';
import TextField from 'backstage-text-field';

render(<TextField label='Input some data' />, document.getElementById('container'));