mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 12:43:11 +10:00
Add component comments
Add information to FieldGroupCheckbox and PropertyGroup about the relation between the two components.
This commit is contained in:
parent
9d89b45771
commit
42c7df4943
2 changed files with 17 additions and 0 deletions
|
|
@ -1,3 +1,12 @@
|
|||
/*
|
||||
* Renders a group of checkboxes that can be used to select
|
||||
* multiple values from a set of options.
|
||||
*
|
||||
* The corresponding component when rendering the selected
|
||||
* values is PropertyGroup.
|
||||
*
|
||||
*/
|
||||
|
||||
import React, { Component } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import classNames from 'classnames';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,11 @@
|
|||
/*
|
||||
* Renders a set of options with selected and non-selected values.
|
||||
*
|
||||
* The corresponding component when selecting the values is
|
||||
* FieldGroupCheckbox.
|
||||
*
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import classNames from 'classnames';
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue