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'
|
|
|
|
|
|
|
|
let T = ({ children, k }) => <Trans i18nKey={k}>{children}</Trans>
|
|
|
|
|
2018-11-06 13:15:06 +00:00
|
|
|
export { React, Component, T }
|