Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import * as React from 'react';
import container from '../state';
import LanguageItem from './LanguageItem';
import { ListWrap } from './styled';
const renderItem = (item, index) => {
    return React.createElement(LanguageItem, Object.assign({ index: index }, item, { shouldShowCurrency: false }));
};
const localeOptions = container.languages.map(renderItem);
class LanguageList extends React.Component {
    /**
     * @see ./localeContainer
     * @param {Language} item
     * @param {Number} index
     * @return {LanguageItem}
     */
    render() {
        return React.createElement(ListWrap, null, localeOptions);
    }
}
export { LanguageList };
export default LanguageList;
//# sourceMappingURL=LanguageList.js.map