Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

igm-input

bbc181.6.0

A component from the int-gel-matter library.

readme

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 />;
};