@not-govuk/hint
v0.15.0
Published
Hint text for a form field.
Downloads
1,057
Readme
NotGovUK - Hint
Hint text for a form field.
Using this package
First install the package into your project:
npm install -S @not-govuk/hint
Then use it in your code as follows:
import React, { createElement as h } from 'react';
import Hint from '@not-govuk/hint';
export const MyComponent = props => (
<Hint id="field-id-hint">Hint text</Hint>
);
export default MyComponent;
Working on this package
Before working on this package you must install its dependencies using the following command:
pnpm install
Testing
Run the unit tests.
npm test
Building
Build the package by compiling the TypeScript source code.
npm run build
Clean-up
Remove any previously built files.
npm run clean