forked from yahoo/react-i13n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.es.js
26 lines (20 loc) · 842 Bytes
/
index.es.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* Copyright 2015 - Present, Yahoo Inc.
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
import I13nNodeLib from './dist-es/libs/I13nNode';
import ReactI13nLib from './dist-es/libs/ReactI13n';
import createI13nNodeLib from './dist-es/utils/createI13nNode';
import setupI13nLib from './dist-es/utils/setupI13n';
import I13nAnchorLib from './dist-es/components/I13nAnchor';
import I13nButtonLib from './dist-es/components/I13nButton';
import I13nDivLib from './dist-es/components/I13nDiv';
// Core libraries
export var I13nNode = I13nNodeLib;
export var ReactI13n = ReactI13nLib;
// Utils
export var createI13nNode = createI13nNodeLib;
export var setupI13n = setupI13nLib;
export var I13nAnchor = I13nAnchorLib;
export var I13nButton = I13nButtonLib;
export var I13nDiv = I13nDivLib;