metadata-based-explorer1
Version:
Box UI Elements
20 lines (18 loc) • 707 B
JavaScript
import * as React from 'react';
/**
* @class Encloses a plural string for a particular plural category.
*
* The categories for English are "one" for singular and "other" for plural. Both are
* required when writing plurals with the FormattedCompMessage component in source code.<p>
*
* This component does not add any functionality beyond its contents, and its only
* purpose is to enclose some JSX to use for a particular plural category.
*
* See the [Unicode CLDR description of plural category
* rules](http://cldr.unicode.org/index/cldr-spec/plural-rules) for more details.
*/
var Plural = function Plural(_ref) {
var children = _ref.children;
return children;
};
export default Plural;