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