JSPM

@instructure/ui-form-field

6.13.1-rc.5+81f19752e
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9727
  • Score
    100M100P100Q141142F
  • License MIT

A UI component library made by Instructure Inc.

Package Exports

  • @instructure/ui-form-field
  • @instructure/ui-form-field/lib/FormField
  • @instructure/ui-form-field/lib/FormFieldGroup
  • @instructure/ui-form-field/lib/FormFieldLayout
  • @instructure/ui-form-field/lib/FormFieldMessages
  • @instructure/ui-form-field/lib/FormPropTypes
  • @instructure/ui-form-field/lib/FormPropTypes.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@instructure/ui-form-field) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme


category: packages

ui-form-field

npm build-status MIT License Code of Conduct

Installation

yarn add @instructure/ui-form-field

Usage

import React from 'react'
import { FormField } from '@instructure/ui-form-field'

const MyFormField = () => {
  return (
    <FormField label="Label" layout="inline">
      ...
    </FormField>
  )
}