Files
simple-react-app-kit/packages/i18n/src/runtime/translate.tsx
T

8 lines
180 B
TypeScript
Raw Normal View History

import { Trans, type TransProps } from "@lingui/react"
export type TranslateProps = TransProps
export function Translate(props: TranslateProps) {
return <Trans {...props} />
}