1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/__mocks__/@linguiMacro.ts
Hung-Han (Henry) Chen 2b2499107f
Mock <Trans /> from @lingui/macro as a component simplely returns children components
Signed-off-by: Hung-Han (Henry) Chen <chenhungh@gmail.com>
Signed-off-by: Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
2020-11-03 18:26:19 +08:00

4 lines
90 B
TypeScript

module.exports = {
Trans: ({ children }: { children: React.ReactNode }) => children,
};