intly-react

> description

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
intly-react
0.0.1-alpha.24 years ago5 years agoMinified + gzip package size for intly-react in KB

Readme

intly-react
description

Getting Started

todo
$ npm install --save intly intly-react
# or
$ yarn add intly intly-react

todo
import { Intly } from 'intly';
import { createIntlyHandler } from 'intly-react';

const intly = new Intly('en', {
  hello: 'Hello, World',
});

const IntlyHandler = createIntlyHandler(intly);

ReactDOM.render(
  <IntlyHandler>
    <h1>{intly.t('hello')}</h1>
  </IntlyHandler>,
  document.getElementById('app'),
);

API

todo