@dlghq/react-l10n

0.9.5 • Public • Published

React localization

Localization for React components

Installation

npm install --save react
npm install --save @dlghq/react-l10n

Usage

import React from 'react';
import { render } from 'react-dom';
import { Provider, Text } from '@dlghq/react-l10n';

const messages = {
  'en-US': { hello: 'Hello' },
  'ru-RU': { hello: 'Привет' },
};

function Application() {
  return (
    <Provider messages={messages} locale={navigator.language}>
      <Text id="hello" className="text" tagName="p" />
    </Provider>
  );
}

const container = document.getElementById('container');

render(<Application />, container);

More examples in tests

License

Apache-2.0

/@dlghq/react-l10n/

    Package Sidebar

    Install

    npm i @dlghq/react-l10n

    Weekly Downloads

    55

    Version

    0.9.5

    License

    Apache-2.0

    Unpacked Size

    20.8 kB

    Total Files

    9

    Last publish

    Collaborators

    • timurkhabibullin