mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 00:35:00 +00:00
7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
import React, { Component } from 'react'
|
|
import { Trans } from 'react-i18next'
|
|
import emoji from 'react-easy-emoji'
|
|
|
|
let T = ({ children, k }) => <Trans i18nKey={k}>{children}</Trans>
|
|
|
|
export { React, Component, T, emoji }
|