0.1.1 • Published 4 years ago

@rock-kit/ui-forms v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

category: packages

ui-forms

npm  build-status  MIT License  Code of Conduct

Components

The ui-forms package contains the following components:

Deprecated components

The following components have been deprecated and will be removed from the ui-forms package:

Codemods are provided to assist in updating the packages. See ui-codemods

Installation

yarn add @rock-kit/ui-forms

Usage

import React from 'react'
import { TextInput } from '@rock-kit/ui-forms'

const MyTextInput = () => {
  return (
    <TextInput label="Name" placeholder="Doe, John Doe" />
  )
}