<Form>
  <FormGroup>
    <TextInput
      helperText="Optional helper text here; if message is more than one line text should wrap (~100 character count maximum)"
      id="test2"
      invalidText="Invalid error message."
      labelText="Text Input label"
      placeholder="Placeholder text"
    />
  </FormGroup>
  <FormGroup>
  <TextArea
    cols={50}
    helperText="Optional helper text here; if message is more than one line text should wrap (~100 character count maximum)"
    id="test5"
    invalidText="Invalid error message."
    labelText="Text Area label"
    placeholder="Placeholder text"
    rows={4}
  />
  </FormGroup>
  <FormGroup>
    <Select
      defaultValue="placeholder-item"
      id="select-1"
      invalidText="This is an invalid error message."
      labelText="Select"
    >
      <SelectItem
        text="Option 1"
        value="option-1"
      />
      <SelectItem
        text="Option 2"
        value="option-2"
      />
      <SelectItem
        text="Option 3"
        value="option-3"
      />
    </Select>
  </FormGroup>
  <Button
    kind="primary"
    tabIndex={0}
    type="submit"
  >
    Submit
  </Button>
</Form>