2018-11-06 13:15:06 +00:00
|
|
|
import React, { Component } from 'react'
|
2018-11-01 17:25:46 +00:00
|
|
|
import { Trans } from 'react-i18next'
|
2019-04-08 16:50:23 +00:00
|
|
|
import emoji from 'react-easy-emoji'
|
2018-11-01 17:25:46 +00:00
|
|
|
|
|
|
|
let T = ({ children, k }) => <Trans i18nKey={k}>{children}</Trans>
|
|
|
|
|
2019-04-08 16:50:23 +00:00
|
|
|
export { React, Component, T, emoji }
|