16 lines
290 B
JavaScript
16 lines
290 B
JavaScript
import { useTranslation } from './useTranslation.js';
|
|
|
|
export function Translation(props) {
|
|
const { ns, children, ...options } = props;
|
|
const [t, i18n, ready] = useTranslation(ns, options);
|
|
|
|
return children(
|
|
t,
|
|
{
|
|
i18n,
|
|
lng: i18n.language,
|
|
},
|
|
ready,
|
|
);
|
|
}
|