18F/e-QIP-prototype

View on GitHub
src/schema/section/identification-physical.js

Summary

Maintainability
A
0 mins
Test Coverage
import * as form from '../form'

export const identificationPhysical = (data = {}) => {
  return {
    Comments: form.textarea(data.Comments),
    EyeColor: form.text(data.EyeColor),
    HairColor: form.text(data.HairColor),
    Height: form.height(data.Height),
    Sex: form.text(data.Sex),
    Weight: form.number(data.Weight)
  }
}