6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
// export { Trans } from "@lingui/macro";
|
|
|
|
import { PropsWithChildren } from "react";
|
|
|
|
export const Trans = (props: PropsWithChildren) => props.children ?? <></>;
|