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 React from 'react';
import { NativeLang, StyledLanguageInNative } from './styled';
class Language extends React.PureComponent {
    render() {
        const { language, name, languageInNative, shouldShowNative } = this.props;
        return (React.createElement(NativeLang, null,
            React.createElement(StyledLanguageInNative, { className: 'locale-' + language }, languageInNative)));
    }
}
Language.defaultProps = {
    shouldShowNative: true,
    language: 'english',
    name: 'English',
    languageInNative: '(english)',
};
export default Language;
export { Language };
//# sourceMappingURL=Language.js.map