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