1.6.0 • Published 6 years ago

igm-input v1.6.0

Weekly downloads
8
License
-
Repository
github
Last release
6 years ago

igm-input

A component from the int-gel-matter library.

Installation

yarn add @bbc/igm-input

or, install directly from git hub if you don't have a BBC NPM account

yarn add git+ssh://git@github.com:bbc/igm-input.git#{tag}

Replace {tag} with a version tag.

Example usage

import React from 'react';
import Input from 'igm-input';
import 'igm-input/input.css';

const App = () => {
  return <Input />;
};